public enum JumpType extends Enum<JumpType>
Enum Constant and Description |
---|
BREAK |
BREAK_ANONYMOUS |
CONTINUE |
END_BLOCK |
GOTO |
GOTO_OUT_OF_IF |
GOTO_OUT_OF_TRY |
NONE |
Modifier and Type | Method and Description |
---|---|
boolean |
isUnknown() |
String |
toString() |
static JumpType |
valueOf(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
public static JumpType[] values()
for (JumpType c : JumpType.values()) System.out.println(c);
public static JumpType 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 nullpublic boolean isUnknown()
Copyright © 2011-2021. All Rights Reserved.