public static enum CopyReport.CopyState extends Enum<CopyReport.CopyState>
Enum Constant and Description |
---|
ERROR
Error : when an error was encountered during the copy (except for metadata copy errors).
|
RUNNING
Running : when the copy is still running
|
SUCCESS
Success : when the copy has ended well
|
Modifier and Type | Method and Description |
---|---|
static CopyReport.CopyState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CopyReport.CopyState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CopyReport.CopyState RUNNING
public static final CopyReport.CopyState SUCCESS
public static final CopyReport.CopyState ERROR
public static CopyReport.CopyState[] values()
for (CopyReport.CopyState c : CopyReport.CopyState.values()) System.out.println(c);
public static CopyReport.CopyState 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 null