toValue method
Implementation
String toValue() {
switch (this) {
case FeedbackValue.notSpecified:
return 'NOT_SPECIFIED';
case FeedbackValue.useful:
return 'USEFUL';
case FeedbackValue.notUseful:
return 'NOT_USEFUL';
}
}