|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<TransMeta.TransformationType> org.pentaho.di.trans.TransMeta.TransformationType
public static enum TransMeta.TransformationType
The TransformationType enum describes the various types of transformations in terms of execution, including Normal, Serial Single-Threaded, and Single-Threaded.
Enum Constant Summary | |
---|---|
Normal
A normal transformation. |
|
SerialSingleThreaded
A serial single-threaded transformation. |
|
SingleThreaded
A single-threaded transformation. |
Method Summary | |
---|---|
String |
getCode()
Gets the code corresponding to the transformation type. |
String |
getDescription()
Gets the description of the transformation type. |
static TransMeta.TransformationType |
getTransformationTypeByCode(String transTypeCode)
Gets the transformation type by code. |
static String[] |
getTransformationTypesDescriptions()
Gets the transformation types descriptions. |
static TransMeta.TransformationType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static TransMeta.TransformationType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final TransMeta.TransformationType Normal
public static final TransMeta.TransformationType SerialSingleThreaded
public static final TransMeta.TransformationType SingleThreaded
Method Detail |
---|
public static TransMeta.TransformationType[] values()
for (TransMeta.TransformationType c : TransMeta.TransformationType.values()) System.out.println(c);
public static TransMeta.TransformationType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String getCode()
public String getDescription()
public static TransMeta.TransformationType getTransformationTypeByCode(String transTypeCode)
transTypeCode
- the trans type code
public static String[] getTransformationTypesDescriptions()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |