Share via


BatchTaskExecutionResult Class

public final class BatchTaskExecutionResult
extends ExpandableStringEnum<BatchTaskExecutionResult>

BatchTaskExecutionResult enums.

Field Summary

Modifier and Type Field and Description
static final BatchTaskExecutionResult FAILURE

There was an error during processing of the Task.

static final BatchTaskExecutionResult SUCCESS

The Task ran successfully.

Constructor Summary

Constructor Description
BatchTaskExecutionResult()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of BatchTaskExecutionResult value.

Method Summary

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

Creates or finds a BatchTaskExecutionResult from its string representation.

static Collection<BatchTaskExecutionResult> values()

Gets known BatchTaskExecutionResult values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

FAILURE

public static final BatchTaskExecutionResult FAILURE

There was an error during processing of the Task. The failure may have occurred before the Task process was launched, while the Task process was executing, or after the Task process exited.

SUCCESS

public static final BatchTaskExecutionResult SUCCESS

The Task ran successfully.

Constructor Details

BatchTaskExecutionResult

@Deprecated
public BatchTaskExecutionResult()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of BatchTaskExecutionResult value.

Method Details

fromString

public static BatchTaskExecutionResult fromString(String name)

Creates or finds a BatchTaskExecutionResult from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding BatchTaskExecutionResult.

values

public static Collection<BatchTaskExecutionResult> values()

Gets known BatchTaskExecutionResult values.

Returns:

known BatchTaskExecutionResult values.

Applies to