com.jogamp.common.os
Enum MachineDescription.ID
java.lang.Object
java.lang.Enum<MachineDescription.ID>
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>
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
cpu
public final Platform.CPUType cpu
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