public class EvaluationAnswerData
extends java.lang.Object
implements java.io.Serializable
Information about answer data for a contact evaluation. Answer data must be either string, numeric, or not applicable.
| Constructor and Description |
|---|
EvaluationAnswerData() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.Boolean |
getNotApplicable()
The flag to mark the question as not applicable.
|
java.lang.Double |
getNumericValue()
The numeric value for an answer in a contact evaluation.
|
java.lang.String |
getStringValue()
The string value for an answer in a contact evaluation.
|
int |
hashCode() |
java.lang.Boolean |
isNotApplicable()
The flag to mark the question as not applicable.
|
void |
setNotApplicable(java.lang.Boolean notApplicable)
The flag to mark the question as not applicable.
|
void |
setNumericValue(java.lang.Double numericValue)
The numeric value for an answer in a contact evaluation.
|
void |
setStringValue(java.lang.String stringValue)
The string value for an answer in a contact evaluation.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
EvaluationAnswerData |
withNotApplicable(java.lang.Boolean notApplicable)
The flag to mark the question as not applicable.
|
EvaluationAnswerData |
withNumericValue(java.lang.Double numericValue)
The numeric value for an answer in a contact evaluation.
|
EvaluationAnswerData |
withStringValue(java.lang.String stringValue)
The string value for an answer in a contact evaluation.
|
public java.lang.String getStringValue()
The string value for an answer in a contact evaluation.
Constraints:
Length: 0 - 128
The string value for an answer in a contact evaluation.
public void setStringValue(java.lang.String stringValue)
The string value for an answer in a contact evaluation.
Constraints:
Length: 0 - 128
stringValue - The string value for an answer in a contact evaluation.
public EvaluationAnswerData withStringValue(java.lang.String stringValue)
The string value for an answer in a contact evaluation.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 0 - 128
stringValue - The string value for an answer in a contact evaluation.
public java.lang.Double getNumericValue()
The numeric value for an answer in a contact evaluation.
The numeric value for an answer in a contact evaluation.
public void setNumericValue(java.lang.Double numericValue)
The numeric value for an answer in a contact evaluation.
numericValue - The numeric value for an answer in a contact evaluation.
public EvaluationAnswerData withNumericValue(java.lang.Double numericValue)
The numeric value for an answer in a contact evaluation.
Returns a reference to this object so that method calls can be chained together.
numericValue - The numeric value for an answer in a contact evaluation.
public java.lang.Boolean isNotApplicable()
The flag to mark the question as not applicable.
The flag to mark the question as not applicable.
public java.lang.Boolean getNotApplicable()
The flag to mark the question as not applicable.
The flag to mark the question as not applicable.
public void setNotApplicable(java.lang.Boolean notApplicable)
The flag to mark the question as not applicable.
notApplicable - The flag to mark the question as not applicable.
public EvaluationAnswerData withNotApplicable(java.lang.Boolean notApplicable)
The flag to mark the question as not applicable.
Returns a reference to this object so that method calls can be chained together.
notApplicable - The flag to mark the question as not applicable.
public java.lang.String toString()
toString in class java.lang.ObjectObject.toString()public int hashCode()
hashCode in class java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals in class java.lang.Object