private static enum InlineDecision.Code extends Enum<InlineDecision.Code>
Enum Constant and Description |
---|
DECIDE_NO
Symbolic constant coding internal state.
|
DECIDE_YES
Symbolic constant coding internal state.
|
GUARDED_YES
Symbolic constant coding internal state.
|
Modifier and Type | Method and Description |
---|---|
static InlineDecision.Code |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InlineDecision.Code[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InlineDecision.Code DECIDE_NO
public static final InlineDecision.Code DECIDE_YES
public static final InlineDecision.Code GUARDED_YES
public static InlineDecision.Code[] values()
for (InlineDecision.Code c : InlineDecision.Code.values()) System.out.println(c);
public static InlineDecision.Code valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null