public enum ETLHealth extends Enum<ETLHealth>
| Enum Constant and Description |
|---|
EXTRACTION_FAILED
The harvest could not be completed, due to an ExtractorException.
|
HARVEST_FAILED
The harvest could not be completed, due to an unknown exception.
|
INITIALIZATION_FAILED
The harvester service could not be started.
|
LOADING_FAILED
The harvest could not be completed, due to a LoaderException.
|
OK
The service has not experienced any significant failures.
|
TRANSFORMATION_FAILED
The harvest could not be completed, due to a TransformerException.
|
| Modifier and Type | Method and Description |
|---|---|
static ETLHealth |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ETLHealth[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ETLHealth OK
public static final ETLHealth HARVEST_FAILED
public static final ETLHealth EXTRACTION_FAILED
public static final ETLHealth TRANSFORMATION_FAILED
public static final ETLHealth LOADING_FAILED
public static final ETLHealth INITIALIZATION_FAILED
public static ETLHealth[] values()
for (ETLHealth c : ETLHealth.values()) System.out.println(c);
public static ETLHealth 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.