public class ParameterValue
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
A value or list of parameter values.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
id
The ID of the parameter value.
|
private java.lang.String |
stringValue
The field value, expressed as a String.
|
Constructor and Description |
---|
ParameterValue() |
Modifier and Type | Method and Description |
---|---|
ParameterValue |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getId()
The ID of the parameter value.
|
java.lang.String |
getStringValue()
The field value, expressed as a String.
|
int |
hashCode() |
void |
setId(java.lang.String id)
The ID of the parameter value.
|
void |
setStringValue(java.lang.String stringValue)
The field value, expressed as a String.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ParameterValue |
withId(java.lang.String id)
The ID of the parameter value.
|
ParameterValue |
withStringValue(java.lang.String stringValue)
The field value, expressed as a String.
|
private java.lang.String id
The ID of the parameter value.
private java.lang.String stringValue
The field value, expressed as a String.
public void setId(java.lang.String id)
The ID of the parameter value.
id
- The ID of the parameter value.public java.lang.String getId()
The ID of the parameter value.
public ParameterValue withId(java.lang.String id)
The ID of the parameter value.
id
- The ID of the parameter value.public void setStringValue(java.lang.String stringValue)
The field value, expressed as a String.
stringValue
- The field value, expressed as a String.public java.lang.String getStringValue()
The field value, expressed as a String.
public ParameterValue withStringValue(java.lang.String stringValue)
The field value, expressed as a String.
stringValue
- The field value, expressed as a String.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public ParameterValue clone()
clone
in class java.lang.Object