OutputStartMode Class

public final class OutputStartMode
extends ExpandableStringEnum<OutputStartMode>

Value may be JobStartTime, CustomTime, or LastOutputEventTime to indicate whether the starting point of the output event stream should start whenever the job is started, start at a custom user time stamp specified via the outputStartTime property, or start from the last event output time.

Field Summary

Modifier and Type Field and Description
static final OutputStartMode CUSTOM_TIME

Static value CustomTime for OutputStartMode.

static final OutputStartMode JOB_START_TIME

Static value JobStartTime for OutputStartMode.

static final OutputStartMode LAST_OUTPUT_EVENT_TIME

Static value LastOutputEventTime for OutputStartMode.

Constructor Summary

Constructor Description
OutputStartMode()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of OutputStartMode value.

Method Summary

Modifier and Type Method and Description
static OutputStartMode fromString(String name)

Creates or finds a OutputStartMode from its string representation.

static Collection<OutputStartMode> values()

Gets known OutputStartMode values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

CUSTOM_TIME

public static final OutputStartMode CUSTOM_TIME

Static value CustomTime for OutputStartMode.

JOB_START_TIME

public static final OutputStartMode JOB_START_TIME

Static value JobStartTime for OutputStartMode.

LAST_OUTPUT_EVENT_TIME

public static final OutputStartMode LAST_OUTPUT_EVENT_TIME

Static value LastOutputEventTime for OutputStartMode.

Constructor Details

OutputStartMode

@Deprecated
public OutputStartMode()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of OutputStartMode value.

Method Details

fromString

public static OutputStartMode fromString(String name)

Creates or finds a OutputStartMode from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding OutputStartMode.

values

public static Collection<OutputStartMode> values()

Gets known OutputStartMode values.

Returns:

known OutputStartMode values.

Applies to