public class TemplateParameter
extends java.lang.Object
implements java.io.Serializable
The TemplateParameter data type.
| コンストラクタと説明 |
|---|
TemplateParameter() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getDefaultValue()
The default value associated with the parameter.
|
java.lang.String |
getDescription()
User defined description associated with the parameter.
|
java.lang.Boolean |
getNoEcho()
Flag indicating whether the parameter should be displayed as plain
text in logs and UIs.
|
java.lang.String |
getParameterKey()
The name associated with the parameter.
|
int |
hashCode() |
java.lang.Boolean |
isNoEcho()
Flag indicating whether the parameter should be displayed as plain
text in logs and UIs.
|
void |
setDefaultValue(java.lang.String defaultValue)
The default value associated with the parameter.
|
void |
setDescription(java.lang.String description)
User defined description associated with the parameter.
|
void |
setNoEcho(java.lang.Boolean noEcho)
Flag indicating whether the parameter should be displayed as plain
text in logs and UIs.
|
void |
setParameterKey(java.lang.String parameterKey)
The name associated with the parameter.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
TemplateParameter |
withDefaultValue(java.lang.String defaultValue)
The default value associated with the parameter.
|
TemplateParameter |
withDescription(java.lang.String description)
User defined description associated with the parameter.
|
TemplateParameter |
withNoEcho(java.lang.Boolean noEcho)
Flag indicating whether the parameter should be displayed as plain
text in logs and UIs.
|
TemplateParameter |
withParameterKey(java.lang.String parameterKey)
The name associated with the parameter.
|
public java.lang.String getParameterKey()
public void setParameterKey(java.lang.String parameterKey)
parameterKey - The name associated with the parameter.public TemplateParameter withParameterKey(java.lang.String parameterKey)
Returns a reference to this object so that method calls can be chained together.
parameterKey - The name associated with the parameter.public java.lang.String getDefaultValue()
public void setDefaultValue(java.lang.String defaultValue)
defaultValue - The default value associated with the parameter.public TemplateParameter withDefaultValue(java.lang.String defaultValue)
Returns a reference to this object so that method calls can be chained together.
defaultValue - The default value associated with the parameter.public java.lang.Boolean isNoEcho()
public void setNoEcho(java.lang.Boolean noEcho)
noEcho - Flag indicating whether the parameter should be displayed as plain
text in logs and UIs.public TemplateParameter withNoEcho(java.lang.Boolean noEcho)
Returns a reference to this object so that method calls can be chained together.
noEcho - Flag indicating whether the parameter should be displayed as plain
text in logs and UIs.public java.lang.Boolean getNoEcho()
public java.lang.String getDescription()
public void setDescription(java.lang.String description)
description - User defined description associated with the parameter.public TemplateParameter withDescription(java.lang.String description)
Returns a reference to this object so that method calls can be chained together.
description - User defined description associated with the parameter.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object