edu.isi.pegasus.planner.dax
Enum Executable.ARCH
java.lang.Object
java.lang.Enum<Executable.ARCH>
edu.isi.pegasus.planner.dax.Executable.ARCH
- All Implemented Interfaces:
- Serializable, Comparable<Executable.ARCH>
- Enclosing class:
- Executable
public static enum Executable.ARCH
- extends Enum<Executable.ARCH>
ARCH Types
|
Method Summary |
static Executable.ARCH |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Executable.ARCH[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
X86
public static final Executable.ARCH X86
x86
public static final Executable.ARCH x86
X86_64
public static final Executable.ARCH X86_64
x86_64
public static final Executable.ARCH x86_64
PPC
public static final Executable.ARCH PPC
ppc
public static final Executable.ARCH ppc
PPC_64
public static final Executable.ARCH PPC_64
ppc_64
public static final Executable.ARCH ppc_64
IA64
public static final Executable.ARCH IA64
ia64
public static final Executable.ARCH ia64
SPARCV7
public static final Executable.ARCH SPARCV7
sparcv7
public static final Executable.ARCH sparcv7
SPARCV9
public static final Executable.ARCH SPARCV9
sparcv9
public static final Executable.ARCH sparcv9
values
public static Executable.ARCH[] 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 (Executable.ARCH c : Executable.ARCH.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Executable.ARCH 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
Copyright © 2011 The University of Southern California. All Rights Reserved.