public class OptionSpecification
extends java.lang.Object
implements java.io.Serializable
A specification identifying an individual configuration option.
| コンストラクタと説明 |
|---|
OptionSpecification()
Default constructor for a new OptionSpecification object.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getNamespace()
A unique namespace identifying the option's associated AWS resource.
|
java.lang.String |
getOptionName()
The name of the configuration option.
|
int |
hashCode() |
void |
setNamespace(java.lang.String namespace)
A unique namespace identifying the option's associated AWS resource.
|
void |
setOptionName(java.lang.String optionName)
The name of the configuration option.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
OptionSpecification |
withNamespace(java.lang.String namespace)
A unique namespace identifying the option's associated AWS resource.
|
OptionSpecification |
withOptionName(java.lang.String optionName)
The name of the configuration option.
|
public OptionSpecification()
public java.lang.String getNamespace()
public void setNamespace(java.lang.String namespace)
namespace - A unique namespace identifying the option's associated AWS resource.public OptionSpecification withNamespace(java.lang.String namespace)
Returns a reference to this object so that method calls can be chained together.
namespace - A unique namespace identifying the option's associated AWS resource.public java.lang.String getOptionName()
public void setOptionName(java.lang.String optionName)
optionName - The name of the configuration option.public OptionSpecification withOptionName(java.lang.String optionName)
Returns a reference to this object so that method calls can be chained together.
optionName - The name of the configuration option.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