Class CallSurveyScore
- Object
-
- CallSurveyScore
-
public final class CallSurveyScore extends Object
Survey Score
-
-
Constructor Summary
Constructors Constructor Description CallSurveyScore()
Create a new instance of CallSurveyScore
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
finalize()
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.CallSurveyRatingScale
getScale()
Rating Scale for the score, default is 5 star rating (1-5)int
getScore()
Score ValueCallSurveyScore
setScale(CallSurveyRatingScale value)
Rating Scale for the score, default is 5 star rating (1-5)CallSurveyScore
setScore(int value)
Score Value
-
-
-
Method Detail
-
finalize
protected void finalize()
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.- Overrides:
finalize
in classObject
-
getScore
public int getScore()
Score Value
-
setScore
public CallSurveyScore setScore(int value)
Score Value- Parameters:
value
- The new value.
-
getScale
public CallSurveyRatingScale getScale()
Rating Scale for the score, default is 5 star rating (1-5)
-
setScale
public CallSurveyScore setScale(CallSurveyRatingScale value)
Rating Scale for the score, default is 5 star rating (1-5)- Parameters:
value
- The new value.
-
-