public class Output
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
The Output data type.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
description
User defined description associated with the output.
|
private java.lang.String |
outputKey
The key associated with the output.
|
private java.lang.String |
outputValue
The value associated with the output.
|
Constructor and Description |
---|
Output() |
Modifier and Type | Method and Description |
---|---|
Output |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getDescription()
User defined description associated with the output.
|
java.lang.String |
getOutputKey()
The key associated with the output.
|
java.lang.String |
getOutputValue()
The value associated with the output.
|
int |
hashCode() |
void |
setDescription(java.lang.String description)
User defined description associated with the output.
|
void |
setOutputKey(java.lang.String outputKey)
The key associated with the output.
|
void |
setOutputValue(java.lang.String outputValue)
The value associated with the output.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
Output |
withDescription(java.lang.String description)
User defined description associated with the output.
|
Output |
withOutputKey(java.lang.String outputKey)
The key associated with the output.
|
Output |
withOutputValue(java.lang.String outputValue)
The value associated with the output.
|
private java.lang.String outputKey
The key associated with the output.
private java.lang.String outputValue
The value associated with the output.
private java.lang.String description
User defined description associated with the output.
public void setOutputKey(java.lang.String outputKey)
The key associated with the output.
outputKey
- The key associated with the output.public java.lang.String getOutputKey()
The key associated with the output.
public Output withOutputKey(java.lang.String outputKey)
The key associated with the output.
outputKey
- The key associated with the output.public void setOutputValue(java.lang.String outputValue)
The value associated with the output.
outputValue
- The value associated with the output.public java.lang.String getOutputValue()
The value associated with the output.
public Output withOutputValue(java.lang.String outputValue)
The value associated with the output.
outputValue
- The value associated with the output.public void setDescription(java.lang.String description)
User defined description associated with the output.
description
- User defined description associated with the output.public java.lang.String getDescription()
User defined description associated with the output.
public Output withDescription(java.lang.String description)
User defined description associated with the output.
description
- User defined description associated with the output.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 Output clone()
clone
in class java.lang.Object