Enum TableOutputMetaInjection.Entry
- java.lang.Object
-
- java.lang.Enum<TableOutputMetaInjection.Entry>
-
- org.pentaho.di.trans.steps.tableoutput.TableOutputMetaInjection.Entry
-
- All Implemented Interfaces:
Serializable
,Comparable<TableOutputMetaInjection.Entry>
,StepMetaInjectionEntryInterface
- Enclosing class:
- TableOutputMetaInjection
public static enum TableOutputMetaInjection.Entry extends Enum<TableOutputMetaInjection.Entry> implements StepMetaInjectionEntryInterface
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TableOutputMetaInjection.Entry
findEntry(String key)
String
getDescription()
int
getValueType()
static TableOutputMetaInjection.Entry
valueOf(String name)
Returns the enum constant of this type with the specified name.static TableOutputMetaInjection.Entry[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface org.pentaho.di.trans.step.StepMetaInjectionEntryInterface
name
-
-
-
-
Enum Constant Detail
-
TARGET_SCHEMA
public static final TableOutputMetaInjection.Entry TARGET_SCHEMA
-
TARGET_TABLE
public static final TableOutputMetaInjection.Entry TARGET_TABLE
-
COMMIT_SIZE
public static final TableOutputMetaInjection.Entry COMMIT_SIZE
-
TRUNCATE_TABLE
public static final TableOutputMetaInjection.Entry TRUNCATE_TABLE
-
SPECIFY_DATABASE_FIELDS
public static final TableOutputMetaInjection.Entry SPECIFY_DATABASE_FIELDS
-
IGNORE_INSERT_ERRORS
public static final TableOutputMetaInjection.Entry IGNORE_INSERT_ERRORS
-
USE_BATCH_UPDATE
public static final TableOutputMetaInjection.Entry USE_BATCH_UPDATE
-
PARTITION_OVER_TABLES
public static final TableOutputMetaInjection.Entry PARTITION_OVER_TABLES
-
PARTITIONING_FIELD
public static final TableOutputMetaInjection.Entry PARTITIONING_FIELD
-
PARTITION_DATA_PER
public static final TableOutputMetaInjection.Entry PARTITION_DATA_PER
-
TABLE_NAME_DEFINED_IN_FIELD
public static final TableOutputMetaInjection.Entry TABLE_NAME_DEFINED_IN_FIELD
-
TABLE_NAME_FIELD
public static final TableOutputMetaInjection.Entry TABLE_NAME_FIELD
-
STORE_TABLE_NAME
public static final TableOutputMetaInjection.Entry STORE_TABLE_NAME
-
RETURN_AUTO_GENERATED_KEY
public static final TableOutputMetaInjection.Entry RETURN_AUTO_GENERATED_KEY
-
AUTO_GENERATED_KEY_FIELD
public static final TableOutputMetaInjection.Entry AUTO_GENERATED_KEY_FIELD
-
DATABASE_FIELDS
public static final TableOutputMetaInjection.Entry DATABASE_FIELDS
-
DATABASE_FIELD
public static final TableOutputMetaInjection.Entry DATABASE_FIELD
-
DATABASE_FIELDNAME
public static final TableOutputMetaInjection.Entry DATABASE_FIELDNAME
-
STREAM_FIELDNAME
public static final TableOutputMetaInjection.Entry STREAM_FIELDNAME
-
-
Method Detail
-
values
public static TableOutputMetaInjection.Entry[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TableOutputMetaInjection.Entry c : TableOutputMetaInjection.Entry.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TableOutputMetaInjection.Entry valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValueType
public int getValueType()
- Specified by:
getValueType
in interfaceStepMetaInjectionEntryInterface
- Returns:
- the valueType
-
getDescription
public String getDescription()
- Specified by:
getDescription
in interfaceStepMetaInjectionEntryInterface
- Returns:
- the description
-
findEntry
public static TableOutputMetaInjection.Entry findEntry(String key)
-
-