public enum ETLStepSubCategory extends java.lang.Enum<ETLStepSubCategory>
Enum Constant and Description |
---|
API |
DATA_SCIENCE |
DATABASE |
FILE |
GEOGRAPHIC |
NONE |
PLUGIN |
TRANSFORM |
YELLOWFIN |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static ETLStepSubCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ETLStepSubCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ETLStepSubCategory NONE
public static final ETLStepSubCategory DATABASE
public static final ETLStepSubCategory FILE
public static final ETLStepSubCategory API
public static final ETLStepSubCategory PLUGIN
public static final ETLStepSubCategory DATA_SCIENCE
public static final ETLStepSubCategory GEOGRAPHIC
public static final ETLStepSubCategory YELLOWFIN
public static final ETLStepSubCategory TRANSFORM
public static ETLStepSubCategory[] values()
for (ETLStepSubCategory c : ETLStepSubCategory.values()) System.out.println(c);
public static ETLStepSubCategory valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<ETLStepSubCategory>