public static enum JavaType.JKind extends java.lang.Enum<JavaType.JKind>
Enum Constant and Description |
---|
TYPE_ARRAY |
TYPE_FUNCTION_POINTER |
TYPE_OBJECT |
TYPE_SCALAR |
Modifier and Type | Method and Description |
---|---|
static JavaType.JKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JavaType.JKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavaType.JKind TYPE_FUNCTION_POINTER
public static final JavaType.JKind TYPE_ARRAY
public static final JavaType.JKind TYPE_SCALAR
public static final JavaType.JKind TYPE_OBJECT
public static JavaType.JKind[] values()
for (JavaType.JKind c : JavaType.JKind.values()) System.out.println(c);
public static JavaType.JKind valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null