Enum Constant and Description |
---|
BREAK |
BREAK_ANONYMOUS |
CONTINUE |
END_BLOCK |
GOTO |
GOTO_OUT_OF_IF |
GOTO_OUT_OF_TRY |
NONE |
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
description |
private boolean |
isUnknown |
Modifier and Type | Method and Description |
---|---|
boolean |
isUnknown() |
java.lang.String |
toString() |
static JumpType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JumpType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JumpType NONE
public static final JumpType GOTO
public static final JumpType GOTO_OUT_OF_IF
public static final JumpType GOTO_OUT_OF_TRY
public static final JumpType BREAK
public static final JumpType BREAK_ANONYMOUS
public static final JumpType CONTINUE
public static final JumpType END_BLOCK
private final java.lang.String description
private final boolean isUnknown
public static JumpType[] values()
for (JumpType c : JumpType.values()) System.out.println(c);
public static JumpType 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 boolean isUnknown()
public java.lang.String toString()
toString
in class java.lang.Enum<JumpType>