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