public static enum Bytecode.QuantifierKind extends Enum<Bytecode.QuantifierKind>
| Modifier and Type | Field and Description |
|---|---|
int |
opcode |
| Modifier and Type | Method and Description |
|---|---|
static Bytecode.QuantifierKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Bytecode.QuantifierKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Bytecode.QuantifierKind SOME
public static final Bytecode.QuantifierKind ALL
public static Bytecode.QuantifierKind[] values()
for (Bytecode.QuantifierKind c : Bytecode.QuantifierKind.values()) System.out.println(c);
public static Bytecode.QuantifierKind 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.