edu.isi.pegasus.planner.catalog.classes
public static enum SysInfo.Architecture extends Enum<SysInfo.Architecture>
| Enum Constant and Description |
|---|
amd64 |
ia64 |
ppc |
ppc_64 |
sparcv7 |
sparcv9 |
x86 |
x86_64 |
| Modifier and Type | Method and Description |
|---|---|
static SysInfo.Architecture |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SysInfo.Architecture[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SysInfo.Architecture x86
public static final SysInfo.Architecture x86_64
public static final SysInfo.Architecture ppc
public static final SysInfo.Architecture ppc_64
public static final SysInfo.Architecture ia64
public static final SysInfo.Architecture sparcv7
public static final SysInfo.Architecture sparcv9
public static final SysInfo.Architecture amd64
public static SysInfo.Architecture[] values()
for (SysInfo.Architecture c : SysInfo.Architecture.values()) System.out.println(c);
public static SysInfo.Architecture valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is null