public enum ImportState extends Enum<ImportState>
| Enum Constant and Description |
|---|
CANCELLED
import cancelled, finished abnormally
|
DONE
import completly done (with or without errors)
|
IDLE
import not yet started / scheduled / waiting to receive lock
|
RUNNING
import currently running
|
| Modifier and Type | Method and Description |
|---|---|
static ImportState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImportState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportState IDLE
public static final ImportState RUNNING
public static final ImportState DONE
public static final ImportState CANCELLED
public static ImportState[] values()
for (ImportState c : ImportState.values()) System.out.println(c);
public static ImportState 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 © 2008-2016. All Rights Reserved.