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