public enum ImportArchiveStatus extends java.lang.Enum<ImportArchiveStatus>
Enum Constant and Description |
---|
FAILURE |
INPROGRESS |
SUCCESS |
WARNING |
Modifier and Type | Method and Description |
---|---|
static ImportArchiveStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImportArchiveStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportArchiveStatus SUCCESS
public static final ImportArchiveStatus WARNING
public static final ImportArchiveStatus FAILURE
public static final ImportArchiveStatus INPROGRESS
public static ImportArchiveStatus[] values()
for (ImportArchiveStatus c : ImportArchiveStatus.values()) System.out.println(c);
public static ImportArchiveStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null