public class ParameterNameValue
extends java.lang.Object
implements java.io.Serializable
A name and value pair used to update the value of a Parameter.
| コンストラクタと説明 |
|---|
ParameterNameValue()
Default constructor for a new ParameterNameValue object.
|
ParameterNameValue(java.lang.String parameterName)
Constructs a new ParameterNameValue object.
|
ParameterNameValue(java.lang.String parameterName,
java.lang.String parameterValue)
Constructs a new ParameterNameValue object.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getParameterName()
Specifies the name of the parameter.
|
java.lang.String |
getParameterValue()
Specifies the value of the parameter.
|
int |
hashCode() |
void |
setParameterName(java.lang.String parameterName)
Specifies the name of the parameter.
|
void |
setParameterValue(java.lang.String parameterValue)
Specifies the value of the parameter.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ParameterNameValue |
withParameterName(java.lang.String parameterName)
Specifies the name of the parameter.
|
ParameterNameValue |
withParameterValue(java.lang.String parameterValue)
Specifies the value of the parameter.
|
public ParameterNameValue()
public ParameterNameValue(java.lang.String parameterName)
parameterName - Specifies the name of the parameter.public ParameterNameValue(java.lang.String parameterName,
java.lang.String parameterValue)
parameterName - Specifies the name of the parameter.parameterValue - Specifies the value of the parameter.public java.lang.String getParameterName()
public void setParameterName(java.lang.String parameterName)
parameterName - Specifies the name of the parameter.public ParameterNameValue 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 ParameterNameValue 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 toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object