public enum ETLState extends Enum<ETLState>
| Enum Constant and Description |
|---|
ABORTING |
CANCELLING |
DONE |
FUBAR |
HARVESTING |
IDLE |
INITIALIZING |
QUEUED |
| Modifier and Type | Method and Description |
|---|---|
static ETLState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ETLState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ETLState INITIALIZING
public static final ETLState FUBAR
public static final ETLState IDLE
public static final ETLState QUEUED
public static final ETLState HARVESTING
public static final ETLState DONE
public static final ETLState ABORTING
public static final ETLState CANCELLING
public static ETLState[] values()
for (ETLState c : ETLState.values()) System.out.println(c);
public static ETLState 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 © 2017–2019. All rights reserved.