public enum DecisionMessage extends java.lang.Enum<DecisionMessage>
| Enum Constant and Description |
|---|
FLAG_KEY_INVALID |
SDK_NOT_READY |
VARIABLE_VALUE_INVALID |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
reason(java.lang.Object... args) |
static DecisionMessage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DecisionMessage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecisionMessage SDK_NOT_READY
public static final DecisionMessage FLAG_KEY_INVALID
public static final DecisionMessage VARIABLE_VALUE_INVALID
public static DecisionMessage[] values()
for (DecisionMessage c : DecisionMessage.values()) System.out.println(c);
public static DecisionMessage 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 java.lang.String reason(java.lang.Object... args)