public enum NativeType extends Enum<NativeType>
Enum Constant and Description |
---|
DOUBLE |
FLOAT |
LONGDOUBLE |
POINTER |
SCHAR |
SINT |
SINT16 |
SINT32 |
SINT64 |
SINT8 |
SLONG |
SSHORT |
STRUCT |
UCHAR |
UINT |
UINT16 |
UINT32 |
UINT64 |
UINT8 |
ULONG |
USHORT |
VOID |
Modifier and Type | Method and Description |
---|---|
static NativeType |
valueOf(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 FLOAT
public static final NativeType DOUBLE
public static final NativeType LONGDOUBLE
public static final NativeType UINT8
public static final NativeType SINT8
public static final NativeType UINT16
public static final NativeType SINT16
public static final NativeType UINT32
public static final NativeType SINT32
public static final NativeType UINT64
public static final NativeType SINT64
public static final NativeType POINTER
public static final NativeType UCHAR
public static final NativeType SCHAR
public static final NativeType USHORT
public static final NativeType SSHORT
public static final NativeType UINT
public static final NativeType SINT
public static final NativeType ULONG
public static final NativeType SLONG
public static final NativeType STRUCT
public static NativeType[] values()
for (NativeType c : NativeType.values()) System.out.println(c);
public static NativeType 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 nullCopyright © 2016. All Rights Reserved.