public enum ArrayType extends Enum<ArrayType>
Enum Constant and Description |
---|
T_BOOLEAN |
T_BYTE |
T_CHAR |
T_DOUBLE |
T_FLOAT |
T_INT |
T_LONG |
T_SHORT |
Modifier and Type | Method and Description |
---|---|
static ArrayType |
getArrayType(int id) |
JavaTypeInstance |
getJavaTypeInstance() |
String |
toString() |
static ArrayType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArrayType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArrayType T_BOOLEAN
public static final ArrayType T_CHAR
public static final ArrayType T_FLOAT
public static final ArrayType T_DOUBLE
public static final ArrayType T_BYTE
public static final ArrayType T_SHORT
public static final ArrayType T_INT
public static final ArrayType T_LONG
public static ArrayType[] values()
for (ArrayType c : ArrayType.values()) System.out.println(c);
public static ArrayType 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 static ArrayType getArrayType(int id)
public JavaTypeInstance getJavaTypeInstance()
Copyright © 2011-2021. All Rights Reserved.