public enum Constructs extends Enum<Constructs>
| Enum Constant and Description |
|---|
CONVERTER
|
DATA_PUBLISHER
|
EXTRACTOR
|
FORK_OPERATOR
|
ROW_QUALITY_CHECKER
|
SOURCE
|
TASK_QUALITY_CHECKER
|
WRITER
|
| Modifier and Type | Method and Description |
|---|---|
Class<?> |
constructClass() |
String |
toString() |
static Constructs |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constructs[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constructs SOURCE
public static final Constructs EXTRACTOR
public static final Constructs CONVERTER
public static final Constructs ROW_QUALITY_CHECKER
public static final Constructs TASK_QUALITY_CHECKER
public static final Constructs FORK_OPERATOR
public static final Constructs WRITER
public static final Constructs DATA_PUBLISHER
public static Constructs[] values()
for (Constructs c : Constructs.values()) System.out.println(c);
public static Constructs 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 nullpublic String toString()
toString in class Enum<Constructs>public Class<?> constructClass()