Package org.openjdk.asmtools.jasm
Enum Tables.AnnotElemType
- java.lang.Object
-
- java.lang.Enum<Tables.AnnotElemType>
-
- org.openjdk.asmtools.jasm.Tables.AnnotElemType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Tables.AnnotElemType>
- Enclosing class:
- Tables
public static enum Tables.AnnotElemType extends java.lang.Enum<Tables.AnnotElemType>
AnnotElemType enums
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AE_ANNOTATION
AE_ARRAY
AE_BOOLEAN
AE_BYTE
AE_CHAR
AE_CLASS
AE_DOUBLE
AE_ENUM
AE_FLOAT
AE_INT
AE_LONG
AE_SHORT
AE_STRING
AE_UNKNOWN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
printval()
char
val()
static Tables.AnnotElemType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Tables.AnnotElemType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AE_BYTE
public static final Tables.AnnotElemType AE_BYTE
-
AE_CHAR
public static final Tables.AnnotElemType AE_CHAR
-
AE_SHORT
public static final Tables.AnnotElemType AE_SHORT
-
AE_INT
public static final Tables.AnnotElemType AE_INT
-
AE_LONG
public static final Tables.AnnotElemType AE_LONG
-
AE_FLOAT
public static final Tables.AnnotElemType AE_FLOAT
-
AE_DOUBLE
public static final Tables.AnnotElemType AE_DOUBLE
-
AE_BOOLEAN
public static final Tables.AnnotElemType AE_BOOLEAN
-
AE_STRING
public static final Tables.AnnotElemType AE_STRING
-
AE_ENUM
public static final Tables.AnnotElemType AE_ENUM
-
AE_CLASS
public static final Tables.AnnotElemType AE_CLASS
-
AE_ANNOTATION
public static final Tables.AnnotElemType AE_ANNOTATION
-
AE_ARRAY
public static final Tables.AnnotElemType AE_ARRAY
-
AE_UNKNOWN
public static final Tables.AnnotElemType AE_UNKNOWN
-
-
Method Detail
-
values
public static Tables.AnnotElemType[] 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.AnnotElemType c : Tables.AnnotElemType.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.AnnotElemType 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
-
val
public char val()
-
printval
public java.lang.String printval()
-
-