public static enum CType.CKind extends java.lang.Enum<CType.CKind>
Enum Constant and Description |
---|
TYPE_ARRAY |
TYPE_FUNCTION_POINTER |
TYPE_POINTER |
TYPE_SCALAR |
TYPE_STRUCT |
TYPE_VOID |
Modifier and Type | Method and Description |
---|---|
static CType.CKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CType.CKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CType.CKind TYPE_POINTER
public static final CType.CKind TYPE_FUNCTION_POINTER
public static final CType.CKind TYPE_ARRAY
public static final CType.CKind TYPE_SCALAR
public static final CType.CKind TYPE_STRUCT
public static final CType.CKind TYPE_VOID
public static CType.CKind[] values()
for (CType.CKind c : CType.CKind.values()) System.out.println(c);
public static CType.CKind 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