com.kenai.jaffl.provider
Enum NativeType

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

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


Enum Constant Summary
ADDRESS
           
DOUBLE
           
FLOAT
           
SCHAR
           
SINT
           
SLONG
           
SLONGLONG
           
SSHORT
           
UCHAR
           
UINT
           
ULONG
           
ULONGLONG
           
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

SCHAR

public static final NativeType SCHAR

UCHAR

public static final NativeType UCHAR

SSHORT

public static final NativeType SSHORT

USHORT

public static final NativeType USHORT

SINT

public static final NativeType SINT

UINT

public static final NativeType UINT

SLONG

public static final NativeType SLONG

ULONG

public static final NativeType ULONG

SLONGLONG

public static final NativeType SLONGLONG

ULONGLONG

public static final NativeType ULONGLONG

FLOAT

public static final NativeType FLOAT

DOUBLE

public static final NativeType DOUBLE

ADDRESS

public static final NativeType ADDRESS
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