public enum ImportStatus extends Enum<ImportStatus>
| Enum Constant and Description |
|---|
FAILED |
NOT_LAUNCHED |
NOT_YET_STARTED |
RUNNING |
SUCCESS |
| 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 SUCCESS
public static final ImportStatus FAILED
public static final ImportStatus RUNNING
public static final ImportStatus NOT_LAUNCHED
public static final ImportStatus NOT_YET_STARTED
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 © 2025. All rights reserved.