public enum ETLStepCategory extends java.lang.Enum<ETLStepCategory>
Enum Constant and Description |
---|
INLINETRANSFORM |
INPUT |
OUTPUT |
TRANSFORM |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.String category) |
int |
getDefaultMaxInputs() |
int |
getDefaultMaxOutputs() |
int |
getDefaultMinInputs() |
int |
getDefaultMinOutputs() |
java.lang.String |
toString() |
static ETLStepCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ETLStepCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ETLStepCategory INPUT
public static final ETLStepCategory OUTPUT
public static final ETLStepCategory INLINETRANSFORM
public static final ETLStepCategory TRANSFORM
public static ETLStepCategory[] values()
for (ETLStepCategory c : ETLStepCategory.values()) System.out.println(c);
public static ETLStepCategory 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 int getDefaultMinInputs()
public int getDefaultMaxInputs()
public int getDefaultMinOutputs()
public int getDefaultMaxOutputs()
public java.lang.String toString()
toString
in class java.lang.Enum<ETLStepCategory>
public boolean equals(java.lang.String category)