public enum UserFeedbackRating extends java.lang.Enum<UserFeedbackRating>
Enum Constant and Description |
---|
BAD
bad
|
EXCELLENT
excellent
|
FAIR
fair
|
GOOD
good
|
NOT_RATED
not Rated
|
POOR
poor
|
UNEXPECTED_VALUE
For UserFeedbackRating values that were not expected from the service
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
Modifier and Type | Method and Description |
---|---|
static UserFeedbackRating |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserFeedbackRating[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserFeedbackRating NOT_RATED
public static final UserFeedbackRating BAD
public static final UserFeedbackRating POOR
public static final UserFeedbackRating FAIR
public static final UserFeedbackRating GOOD
public static final UserFeedbackRating EXCELLENT
public static final UserFeedbackRating UNKNOWN_FUTURE_VALUE
public static final UserFeedbackRating UNEXPECTED_VALUE
public static UserFeedbackRating[] values()
for (UserFeedbackRating c : UserFeedbackRating.values()) System.out.println(c);
public static UserFeedbackRating valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null