public enum NativeType extends java.lang.Enum<NativeType>
Enum Constant and Description |
---|
ADDRESS |
DOUBLE |
FLOAT |
SCHAR |
SINT |
SLONG |
SLONGLONG |
SSHORT |
UCHAR |
UINT |
ULONG |
ULONGLONG |
USHORT |
VOID |
Modifier and Type | Method and Description |
---|---|
static NativeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NativeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NativeType VOID
public static final NativeType SCHAR
public static final NativeType UCHAR
public static final NativeType SSHORT
public static final NativeType USHORT
public static final NativeType SINT
public static final NativeType UINT
public static final NativeType SLONG
public static final NativeType ULONG
public static final NativeType SLONGLONG
public static final NativeType ULONGLONG
public static final NativeType FLOAT
public static final NativeType DOUBLE
public static final NativeType ADDRESS
public static NativeType[] values()
for (NativeType c : NativeType.values()) System.out.println(c);
public static NativeType 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