com.kenai.jaffl
public static class Platform.CPU extends Enum<Platform.CPU>
Field Summary | |
---|---|
static Platform.CPU | I386 Intel ia32 |
static Platform.CPU | PPC Power PC 32 bit |
static Platform.CPU | PPC64 Power PC 64 bit |
static Platform.CPU | S390X IBM zSeries S/390 64 bit |
static Platform.CPU | SPARC Sun sparc 32 bit |
static Platform.CPU | SPARCV9 Sun sparc 64 bit |
static Platform.CPU | UNKNOWN Unknown CPU |
static List<Platform.CPU> | VALUES An immutable list containing the values comprising this enum class in the order they're declared. |
static Platform.CPU | X86_64 AMD 64 bit (aka EM64T/X64) |
Method Summary | |
---|---|
List<Platform.CPU> | family() Returns an immutable list containing the values comprising this enum class in the order they're declared. |
static Platform.CPU | valueOf(String name) Static factory to return the enum constant pertaining to the given string name. |
for(CPU c : CPU.VALUES) System.out.println(c);
VALUES
. Few programmers should have any need to use this method. It is provided for use by sophisticated enum-based data structures to prevent the need for reflective access to VALUES
.Returns: an immutable list containing the values comprising this enum class, in the order they're declared.
Throws: IllegalArgumentException if this enum class has no constant with the specified name.