public static enum Bytecode.Extras extends Enum<Bytecode.Extras>
| Enum Constant and Description |
|---|
CONSTANT |
NAME |
STRING |
STRING_ARRAY |
SWITCH_ARRAY |
TYPE |
| Modifier and Type | Method and Description |
|---|---|
static Bytecode.Extras |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Bytecode.Extras[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Bytecode.Extras STRING
public static final Bytecode.Extras CONSTANT
public static final Bytecode.Extras TYPE
public static final Bytecode.Extras NAME
public static final Bytecode.Extras STRING_ARRAY
public static final Bytecode.Extras SWITCH_ARRAY
public static Bytecode.Extras[] values()
for (Bytecode.Extras c : Bytecode.Extras.values()) System.out.println(c);
public static Bytecode.Extras 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 nullCopyright © 2017. All rights reserved.