public static enum DataImporter.Status extends Enum<DataImporter.Status>
| Enum Constant and Description |
|---|
IDLE |
JOB_FAILED |
RUNNING_DELTA_DUMP |
RUNNING_FULL_DUMP |
| Modifier and Type | Method and Description |
|---|---|
static DataImporter.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataImporter.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataImporter.Status IDLE
public static final DataImporter.Status RUNNING_FULL_DUMP
public static final DataImporter.Status RUNNING_DELTA_DUMP
public static final DataImporter.Status JOB_FAILED
public static DataImporter.Status[] values()
for (DataImporter.Status c : DataImporter.Status.values()) System.out.println(c);
public static DataImporter.Status 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 © 2000-2015 Apache Software Foundation. All Rights Reserved.