Enum Exprent.Type
- java.lang.Object
-
- java.lang.Enum<Exprent.Type>
-
- org.jetbrains.java.decompiler.modules.decompiler.exps.Exprent.Type
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Exprent.Type>
- Enclosing class:
- Exprent
public static enum Exprent.Type extends java.lang.Enum<Exprent.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANNOTATIONARRAYASSERTASSIGNMENTCONSTEXITFIELDFUNCTIONIFINVOCATIONMONITORNEWSWITCHSWITCH_HEADVARYIELD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Exprent.TypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Exprent.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANNOTATION
public static final Exprent.Type ANNOTATION
-
ARRAY
public static final Exprent.Type ARRAY
-
ASSERT
public static final Exprent.Type ASSERT
-
ASSIGNMENT
public static final Exprent.Type ASSIGNMENT
-
CONST
public static final Exprent.Type CONST
-
EXIT
public static final Exprent.Type EXIT
-
FIELD
public static final Exprent.Type FIELD
-
FUNCTION
public static final Exprent.Type FUNCTION
-
IF
public static final Exprent.Type IF
-
INVOCATION
public static final Exprent.Type INVOCATION
-
MONITOR
public static final Exprent.Type MONITOR
-
NEW
public static final Exprent.Type NEW
-
SWITCH
public static final Exprent.Type SWITCH
-
SWITCH_HEAD
public static final Exprent.Type SWITCH_HEAD
-
VAR
public static final Exprent.Type VAR
-
YIELD
public static final Exprent.Type YIELD
-
-
Method Detail
-
values
public static Exprent.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 (Exprent.Type c : Exprent.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 Exprent.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
-
-