| Enum Constant and Description |
|---|
BEHAVIOR |
BREAK_BEHAVIOR |
CONTINUE_BEHAVIOR |
EXCEPTIONAL_BEHAVIOR |
MODEL_BEHAVIOR |
NONE |
NORMAL_BEHAVIOR |
RETURN_BEHAVIOR |
| Modifier and Type | Field and Description |
|---|---|
private java.lang.String |
name |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static Behavior |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Behavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Behavior NONE
public static final Behavior BEHAVIOR
public static final Behavior MODEL_BEHAVIOR
public static final Behavior NORMAL_BEHAVIOR
public static final Behavior EXCEPTIONAL_BEHAVIOR
public static final Behavior BREAK_BEHAVIOR
public static final Behavior CONTINUE_BEHAVIOR
public static final Behavior RETURN_BEHAVIOR
public static Behavior[] values()
for (Behavior c : Behavior.values()) System.out.println(c);
public static Behavior 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 toString()
toString in class java.lang.Enum<Behavior>