Package 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:
java.io.Serializable
,java.lang.Comparable<Executable.ARCH>
- Enclosing class:
- Executable
public static enum Executable.ARCH extends java.lang.Enum<Executable.ARCH>
ARCH Types
-
-
Constructor Summary
Constructors Modifier Constructor Description private
ARCH()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Executable.ARCH
valueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
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
-
ppc64le
public static final Executable.ARCH ppc64le
-
aarch64
public static final Executable.ARCH aarch64
-
-
Method Detail
-
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(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-