Package edu.isi.pegasus.planner.common
Enum PegasusProperties.CLEANUP_SCOPE
- java.lang.Object
-
- java.lang.Enum<PegasusProperties.CLEANUP_SCOPE>
-
- edu.isi.pegasus.planner.common.PegasusProperties.CLEANUP_SCOPE
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PegasusProperties.CLEANUP_SCOPE>
- Enclosing class:
- PegasusProperties
public static enum PegasusProperties.CLEANUP_SCOPE extends java.lang.Enum<PegasusProperties.CLEANUP_SCOPE>
An enum defining The scope for cleanup algorithm
-
-
Constructor Summary
Constructors Modifier Constructor Description private
CLEANUP_SCOPE()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PegasusProperties.CLEANUP_SCOPE
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PegasusProperties.CLEANUP_SCOPE[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
fullahead
public static final PegasusProperties.CLEANUP_SCOPE fullahead
-
deferred
public static final PegasusProperties.CLEANUP_SCOPE deferred
-
-
Method Detail
-
values
public static PegasusProperties.CLEANUP_SCOPE[] 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 (PegasusProperties.CLEANUP_SCOPE c : PegasusProperties.CLEANUP_SCOPE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PegasusProperties.CLEANUP_SCOPE 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
-
-