com.kenai.jffi
Enum NativeType

java.lang.Object
  extended by java.lang.Enum<NativeType>
      extended by com.kenai.jffi.NativeType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<NativeType>

public enum NativeType
extends java.lang.Enum<NativeType>


Enum Constant Summary
DOUBLE
           
FLOAT
           
LONGDOUBLE
           
POINTER
           
SCHAR
           
SINT
           
SINT16
           
SINT32
           
SINT64
           
SINT8
           
SLONG
           
SSHORT
           
UCHAR
           
UINT
           
UINT16
           
UINT32
           
UINT64
           
UINT8
           
ULONG
           
USHORT
           
VOID
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

VOID

public static final NativeType VOID

FLOAT

public static final NativeType FLOAT

DOUBLE

public static final NativeType DOUBLE

LONGDOUBLE

public static final NativeType LONGDOUBLE

UINT8

public static final NativeType UINT8

SINT8

public static final NativeType SINT8

UINT16

public static final NativeType UINT16

SINT16

public static final NativeType SINT16

UINT32

public static final NativeType UINT32

SINT32

public static final NativeType SINT32

UINT64

public static final NativeType UINT64

SINT64

public static final NativeType SINT64

POINTER

public static final NativeType POINTER

UCHAR

public static final NativeType UCHAR

SCHAR

public static final NativeType SCHAR

USHORT

public static final NativeType USHORT

SSHORT

public static final NativeType SSHORT

UINT

public static final NativeType UINT

SINT

public static final NativeType SINT

ULONG

public static final NativeType ULONG

SLONG

public static final NativeType SLONG
Method Detail

values

public static NativeType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (NativeType c : NativeType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static NativeType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null