Enum IfExprent.Type
- java.lang.Object
-
- java.lang.Enum<IfExprent.Type>
-
- org.jetbrains.java.decompiler.modules.decompiler.exps.IfExprent.Type
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<IfExprent.Type>
- Enclosing class:
- IfExprent
public static enum IfExprent.Type extends java.lang.Enum<IfExprent.Type>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description IfExprent.TypegetNegative()static IfExprent.TypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IfExprent.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQ
public static final IfExprent.Type EQ
-
NE
public static final IfExprent.Type NE
-
LT
public static final IfExprent.Type LT
-
GE
public static final IfExprent.Type GE
-
GT
public static final IfExprent.Type GT
-
LE
public static final IfExprent.Type LE
-
NULL
public static final IfExprent.Type NULL
-
NONNULL
public static final IfExprent.Type NONNULL
-
ICMPEQ
public static final IfExprent.Type ICMPEQ
-
ICMPNE
public static final IfExprent.Type ICMPNE
-
ICMPLT
public static final IfExprent.Type ICMPLT
-
ICMPGE
public static final IfExprent.Type ICMPGE
-
ICMPGT
public static final IfExprent.Type ICMPGT
-
ICMPLE
public static final IfExprent.Type ICMPLE
-
ACMPEQ
public static final IfExprent.Type ACMPEQ
-
ACMPNE
public static final IfExprent.Type ACMPNE
-
VALUE
public static final IfExprent.Type VALUE
-
-
Method Detail
-
values
public static IfExprent.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IfExprent.Type c : IfExprent.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IfExprent.Type valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getNegative
public IfExprent.Type getNegative()
-
-