Package org.openjdk.asmtools.jasm
Enum Tables.BasicType
- java.lang.Object
-
- java.lang.Enum<Tables.BasicType>
-
- org.openjdk.asmtools.jasm.Tables.BasicType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Tables.BasicType>
- Enclosing class:
- Tables
public static enum Tables.BasicType extends java.lang.Enum<Tables.BasicType>
BasicType enums
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
printval()
static Tables.BasicType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Tables.BasicType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
T_INT
public static final Tables.BasicType T_INT
-
T_LONG
public static final Tables.BasicType T_LONG
-
T_FLOAT
public static final Tables.BasicType T_FLOAT
-
T_DOUBLE
public static final Tables.BasicType T_DOUBLE
-
T_CLASS
public static final Tables.BasicType T_CLASS
-
T_BOOLEAN
public static final Tables.BasicType T_BOOLEAN
-
T_CHAR
public static final Tables.BasicType T_CHAR
-
T_BYTE
public static final Tables.BasicType T_BYTE
-
T_SHORT
public static final Tables.BasicType T_SHORT
-
-
Method Detail
-
values
public static Tables.BasicType[] 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 (Tables.BasicType c : Tables.BasicType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Tables.BasicType 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
-
printval
public java.lang.String printval()
-
-