public enum CopyStatusType extends Enum<CopyStatusType>
| Enum Constant and Description |
|---|
ABORTED
Enum value aborted.
|
FAILED
Enum value failed.
|
PENDING
Enum value pending.
|
SUCCESS
Enum value success.
|
| Modifier and Type | Method and Description |
|---|---|
static CopyStatusType |
fromString(String value)
Parses a serialized value to a CopyStatusType instance.
|
String |
toString() |
static CopyStatusType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CopyStatusType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CopyStatusType PENDING
public static final CopyStatusType SUCCESS
public static final CopyStatusType ABORTED
public static final CopyStatusType FAILED
public static CopyStatusType[] values()
for (CopyStatusType c : CopyStatusType.values()) System.out.println(c);
public static CopyStatusType 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 static CopyStatusType fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<CopyStatusType>This documentation was released into the public domain.