@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum FileStatusType extends Enum<FileStatusType>
Enum Constant and Description |
---|
APPROVED |
FAILED |
PROCESSING |
REJECTED |
Modifier and Type | Method and Description |
---|---|
static FileStatusType |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static FileStatusType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileStatusType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileStatusType APPROVED
public static final FileStatusType REJECTED
public static final FileStatusType PROCESSING
public static final FileStatusType FAILED
public static FileStatusType[] values()
for (FileStatusType c : FileStatusType.values()) System.out.println(c);
public static FileStatusType 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<FileStatusType>
public static FileStatusType fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.