Enum JobIdentifier.Type
- java.lang.Object
-
- java.lang.Enum<JobIdentifier.Type>
-
- software.amazon.awssdk.services.m2.model.JobIdentifier.Type
-
- All Implemented Interfaces:
Serializable,Comparable<JobIdentifier.Type>
- Enclosing class:
- JobIdentifier
public static enum JobIdentifier.Type extends Enum<JobIdentifier.Type>
- See Also:
JobIdentifier.type()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FILE_NAMESCRIPT_NAMEUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JobIdentifier.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static JobIdentifier.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FILE_NAME
public static final JobIdentifier.Type FILE_NAME
-
SCRIPT_NAME
public static final JobIdentifier.Type SCRIPT_NAME
-
UNKNOWN_TO_SDK_VERSION
public static final JobIdentifier.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static JobIdentifier.Type[] 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 (JobIdentifier.Type c : JobIdentifier.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JobIdentifier.Type 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
-
-