Package org.duracloud.storage.domain
Enum HadoopTypes.JOB_TYPES
- java.lang.Object
-
- java.lang.Enum<HadoopTypes.JOB_TYPES>
-
- org.duracloud.storage.domain.HadoopTypes.JOB_TYPES
-
- All Implemented Interfaces:
Serializable,Comparable<HadoopTypes.JOB_TYPES>
- Enclosing class:
- HadoopTypes
public static enum HadoopTypes.JOB_TYPES extends Enum<HadoopTypes.JOB_TYPES>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AMAZON_FIXITYAMAZON_FIXITY_PROPERTIESBULK_IMAGE_CONVERSIONREP_ON_DEMAND
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HadoopTypes.JOB_TYPESvalueOf(String name)Returns the enum constant of this type with the specified name.static HadoopTypes.JOB_TYPES[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BULK_IMAGE_CONVERSION
public static final HadoopTypes.JOB_TYPES BULK_IMAGE_CONVERSION
-
AMAZON_FIXITY
public static final HadoopTypes.JOB_TYPES AMAZON_FIXITY
-
AMAZON_FIXITY_PROPERTIES
public static final HadoopTypes.JOB_TYPES AMAZON_FIXITY_PROPERTIES
-
REP_ON_DEMAND
public static final HadoopTypes.JOB_TYPES REP_ON_DEMAND
-
-
Method Detail
-
values
public static HadoopTypes.JOB_TYPES[] 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 (HadoopTypes.JOB_TYPES c : HadoopTypes.JOB_TYPES.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HadoopTypes.JOB_TYPES 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 nameNullPointerException- if the argument is null
-
-