public enum ImportStatus extends Enum<ImportStatus>
| Enum Constant and Description |
|---|
ACCEPTED |
CANCELLED |
COMPLETE |
FAILED |
RUNNING |
| Modifier and Type | Method and Description |
|---|---|
static ImportStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImportStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportStatus ACCEPTED
public static final ImportStatus RUNNING
public static final ImportStatus COMPLETE
public static final ImportStatus FAILED
public static final ImportStatus CANCELLED
public static ImportStatus[] values()
for (ImportStatus c : ImportStatus.values()) System.out.println(c);
public static ImportStatus 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 nullCopyright © 2019. All Rights Reserved.