com.jogamp.common.os
Enum MachineDescription.ID

java.lang.Object
  extended by java.lang.Enum<MachineDescription.ID>
      extended by com.jogamp.common.os.MachineDescription.ID
All Implemented Interfaces:
Serializable, Comparable<MachineDescription.ID>
Enclosing class:
MachineDescription

public static enum MachineDescription.ID
extends Enum<MachineDescription.ID>


Enum Constant Summary
ARMle_EABI
          Platform.CPUType.ARM EABI Little Endian
X86_32_UNIX
          Platform.CPUType.X86_32 Little Endian Unix
X86_32_WINDOWS
          Platform.CPUType.X86_32 Little Endian Windows
X86_64_UNIX
          Platform.CPUType.X86_64 Little Endian Unix
X86_64_WINDOWS
          Platform.CPUType.X86_64 Little Endian Windows
 
Field Summary
 Platform.CPUType cpu
           
 
Method Summary
static MachineDescription.ID valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MachineDescription.ID[] 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

ARMle_EABI

public static final MachineDescription.ID ARMle_EABI
Platform.CPUType.ARM EABI Little Endian


X86_32_UNIX

public static final MachineDescription.ID X86_32_UNIX
Platform.CPUType.X86_32 Little Endian Unix


X86_64_UNIX

public static final MachineDescription.ID X86_64_UNIX
Platform.CPUType.X86_64 Little Endian Unix


X86_32_WINDOWS

public static final MachineDescription.ID X86_32_WINDOWS
Platform.CPUType.X86_32 Little Endian Windows


X86_64_WINDOWS

public static final MachineDescription.ID X86_64_WINDOWS
Platform.CPUType.X86_64 Little Endian Windows

Field Detail

cpu

public final Platform.CPUType cpu
Method Detail

values

public static MachineDescription.ID[] 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 (MachineDescription.ID c : MachineDescription.ID.values())
    System.out.println(c);

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

valueOf

public static MachineDescription.ID valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null