@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum DataRepositoryTaskType extends Enum<DataRepositoryTaskType>
Enum Constant and Description |
---|
AUTO_RELEASE_DATA |
EXPORT_TO_REPOSITORY |
IMPORT_METADATA_FROM_REPOSITORY |
RELEASE_DATA_FROM_FILESYSTEM |
Modifier and Type | Method and Description |
---|---|
static DataRepositoryTaskType |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static DataRepositoryTaskType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataRepositoryTaskType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataRepositoryTaskType EXPORT_TO_REPOSITORY
public static final DataRepositoryTaskType IMPORT_METADATA_FROM_REPOSITORY
public static final DataRepositoryTaskType RELEASE_DATA_FROM_FILESYSTEM
public static final DataRepositoryTaskType AUTO_RELEASE_DATA
public static DataRepositoryTaskType[] values()
for (DataRepositoryTaskType c : DataRepositoryTaskType.values()) System.out.println(c);
public static DataRepositoryTaskType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<DataRepositoryTaskType>
public static DataRepositoryTaskType fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.