public enum FeedbackStatus extends java.lang.Enum<FeedbackStatus>
Modifier and Type | Method and Description |
---|---|
float |
getWeight() |
static FeedbackStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FeedbackStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeedbackStatus SUCCESS
public static final FeedbackStatus PARTIAL
public static final FeedbackStatus FAILED
public static FeedbackStatus[] values()
for (FeedbackStatus c : FeedbackStatus.values()) System.out.println(c);
public static FeedbackStatus 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 nullpublic float getWeight()