public static enum BaseArmCode.Control extends java.lang.Enum<BaseArmCode.Control>
| Modifier and Type | Method and Description |
|---|---|
static BaseArmCode.Control |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BaseArmCode.Control[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseArmCode.Control BREAK
public static final BaseArmCode.Control CONTINUE
public static final BaseArmCode.Control RETURN
public static final BaseArmCode.Control NORMAL
public static BaseArmCode.Control[] values()
for (BaseArmCode.Control c : BaseArmCode.Control.values()) System.out.println(c);
public static BaseArmCode.Control 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 null