public class Parameter
extends java.lang.Object
implements java.io.Serializable
A setting controlling some apsect of the service's behavior.
| コンストラクタと説明 |
|---|
Parameter()
Default constructor for a new Parameter object.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getAllowedValues()
Specifies the valid range of values for the parameter.
|
java.lang.String |
getDataType()
Specifies the valid data type for the parameter.
|
java.lang.String |
getDescription()
Provides a description of the parameter.
|
java.lang.Boolean |
getIsModifiable()
Indicates whether (
true) or not (false) the
parameter can be modified. |
java.lang.String |
getMinimumEngineVersion()
The earliest engine version to which the parameter can apply.
|
java.lang.String |
getParameterName()
Specifies the name of the parameter.
|
java.lang.String |
getParameterValue()
Specifies the value of the parameter.
|
java.lang.String |
getSource()
Indicates the source of the parameter value.
|
int |
hashCode() |
java.lang.Boolean |
isModifiable()
Indicates whether (
true) or not (false) the
parameter can be modified. |
void |
setAllowedValues(java.lang.String allowedValues)
Specifies the valid range of values for the parameter.
|
void |
setDataType(java.lang.String dataType)
Specifies the valid data type for the parameter.
|
void |
setDescription(java.lang.String description)
Provides a description of the parameter.
|
void |
setIsModifiable(java.lang.Boolean isModifiable)
Indicates whether (
true) or not (false) the
parameter can be modified. |
void |
setMinimumEngineVersion(java.lang.String minimumEngineVersion)
The earliest engine version to which the parameter can apply.
|
void |
setParameterName(java.lang.String parameterName)
Specifies the name of the parameter.
|
void |
setParameterValue(java.lang.String parameterValue)
Specifies the value of the parameter.
|
void |
setSource(java.lang.String source)
Indicates the source of the parameter value.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
Parameter |
withAllowedValues(java.lang.String allowedValues)
Specifies the valid range of values for the parameter.
|
Parameter |
withDataType(java.lang.String dataType)
Specifies the valid data type for the parameter.
|
Parameter |
withDescription(java.lang.String description)
Provides a description of the parameter.
|
Parameter |
withIsModifiable(java.lang.Boolean isModifiable)
Indicates whether (
true) or not (false) the
parameter can be modified. |
Parameter |
withMinimumEngineVersion(java.lang.String minimumEngineVersion)
The earliest engine version to which the parameter can apply.
|
Parameter |
withParameterName(java.lang.String parameterName)
Specifies the name of the parameter.
|
Parameter |
withParameterValue(java.lang.String parameterValue)
Specifies the value of the parameter.
|
Parameter |
withSource(java.lang.String source)
Indicates the source of the parameter value.
|
public Parameter()
public java.lang.String getParameterName()
public void setParameterName(java.lang.String parameterName)
parameterName - Specifies the name of the parameter.public Parameter withParameterName(java.lang.String parameterName)
Returns a reference to this object so that method calls can be chained together.
parameterName - Specifies the name of the parameter.public java.lang.String getParameterValue()
public void setParameterValue(java.lang.String parameterValue)
parameterValue - Specifies the value of the parameter.public Parameter withParameterValue(java.lang.String parameterValue)
Returns a reference to this object so that method calls can be chained together.
parameterValue - Specifies the value of the parameter.public java.lang.String getDescription()
public void setDescription(java.lang.String description)
description - Provides a description of the parameter.public Parameter withDescription(java.lang.String description)
Returns a reference to this object so that method calls can be chained together.
description - Provides a description of the parameter.public java.lang.String getSource()
public void setSource(java.lang.String source)
source - Indicates the source of the parameter value.public Parameter withSource(java.lang.String source)
Returns a reference to this object so that method calls can be chained together.
source - Indicates the source of the parameter value.public java.lang.String getDataType()
public void setDataType(java.lang.String dataType)
dataType - Specifies the valid data type for the parameter.public Parameter withDataType(java.lang.String dataType)
Returns a reference to this object so that method calls can be chained together.
dataType - Specifies the valid data type for the parameter.public java.lang.String getAllowedValues()
public void setAllowedValues(java.lang.String allowedValues)
allowedValues - Specifies the valid range of values for the parameter.public Parameter withAllowedValues(java.lang.String allowedValues)
Returns a reference to this object so that method calls can be chained together.
allowedValues - Specifies the valid range of values for the parameter.public java.lang.Boolean isModifiable()
true) or not (false) the
parameter can be modified. Some parameters have security or
operational implications that prevent them from being changed.true) or not (false) the
parameter can be modified. Some parameters have security or
operational implications that prevent them from being changed.public void setIsModifiable(java.lang.Boolean isModifiable)
true) or not (false) the
parameter can be modified. Some parameters have security or
operational implications that prevent them from being changed.isModifiable - Indicates whether (true) or not (false) the
parameter can be modified. Some parameters have security or
operational implications that prevent them from being changed.public Parameter withIsModifiable(java.lang.Boolean isModifiable)
true) or not (false) the
parameter can be modified. Some parameters have security or
operational implications that prevent them from being changed.
Returns a reference to this object so that method calls can be chained together.
isModifiable - Indicates whether (true) or not (false) the
parameter can be modified. Some parameters have security or
operational implications that prevent them from being changed.public java.lang.Boolean getIsModifiable()
true) or not (false) the
parameter can be modified. Some parameters have security or
operational implications that prevent them from being changed.true) or not (false) the
parameter can be modified. Some parameters have security or
operational implications that prevent them from being changed.public java.lang.String getMinimumEngineVersion()
public void setMinimumEngineVersion(java.lang.String minimumEngineVersion)
minimumEngineVersion - The earliest engine version to which the parameter can apply.public Parameter withMinimumEngineVersion(java.lang.String minimumEngineVersion)
Returns a reference to this object so that method calls can be chained together.
minimumEngineVersion - The earliest engine version to which the parameter can apply.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