public enum StepParameterType extends Enum<StepParameterType>
| Enum Constant and Description |
|---|
BATCH_INPUT_COUNT
Number of input documents in the current batch.
|
EXECUTION_CONTEXT
Context in which execution is occurring (CLI parameters, UI parent shell, etc.),
via an
ExecutionContext object. |
FILTER_CONFIGURATION_ID
Filter configuration identifier for the main input document.
|
FILTER_CONFIGURATION_MAPPER
Filter configuration mapper.
|
INPUT_RAWDOC
RawDocument object of the main input document.
|
INPUT_ROOT_DIRECTORY
Root directory of the first set of input files.
|
INPUT_URI
URI of the main input document.
|
OUTPUT_DIRECTORY
Output directory.
|
OUTPUT_ENCODING
Output encoding of the main output document.
|
OUTPUT_STREAM
output stream of the main output document.
|
OUTPUT_URI
URI of the main output document.
|
ROOT_DIRECTORY
Root directory for the batch.
|
SECOND_INPUT_RAWDOC
RawDocument object of the second input document.
|
SOURCE_LOCALE
Source locale.
|
TARGET_LOCALE
Single Target locale.
|
TARGET_LOCALES
List of target locales.
|
THIRD_INPUT_RAWDOC
RawDocument object of the third input document.
|
UI_PARENT
Deprecated.
The UI parent is now encapsulated in
EXECUTION_CONTEXT. Use that instead. |
| Modifier and Type | Method and Description |
|---|---|
static StepParameterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StepParameterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StepParameterType INPUT_RAWDOC
public static final StepParameterType SECOND_INPUT_RAWDOC
public static final StepParameterType THIRD_INPUT_RAWDOC
public static final StepParameterType INPUT_URI
public static final StepParameterType OUTPUT_URI
public static final StepParameterType OUTPUT_STREAM
public static final StepParameterType SOURCE_LOCALE
public static final StepParameterType TARGET_LOCALE
public static final StepParameterType TARGET_LOCALES
public static final StepParameterType FILTER_CONFIGURATION_ID
public static final StepParameterType FILTER_CONFIGURATION_MAPPER
public static final StepParameterType OUTPUT_ENCODING
public static final StepParameterType ROOT_DIRECTORY
@Deprecated public static final StepParameterType UI_PARENT
EXECUTION_CONTEXT. Use that instead.public static final StepParameterType BATCH_INPUT_COUNT
public static final StepParameterType INPUT_ROOT_DIRECTORY
public static final StepParameterType OUTPUT_DIRECTORY
public static final StepParameterType EXECUTION_CONTEXT
ExecutionContext object.public static StepParameterType[] values()
for (StepParameterType c : StepParameterType.values()) System.out.println(c);
public static StepParameterType 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 nullCopyright © 2021. All rights reserved.