public enum ExtendedBatchStatus extends Enum<ExtendedBatchStatus>
Enum Constant and Description |
---|
DO_NOT_RUN |
EXCEPTION_THROWN |
JOB_OPERATOR_STOPPING |
JSL_END |
JSL_FAIL |
JSL_STOP |
NORMAL_COMPLETION |
Modifier and Type | Method and Description |
---|---|
static ExtendedBatchStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExtendedBatchStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtendedBatchStatus JSL_END
public static final ExtendedBatchStatus JSL_FAIL
public static final ExtendedBatchStatus JSL_STOP
public static final ExtendedBatchStatus NORMAL_COMPLETION
public static final ExtendedBatchStatus EXCEPTION_THROWN
public static final ExtendedBatchStatus JOB_OPERATOR_STOPPING
public static final ExtendedBatchStatus DO_NOT_RUN
public static ExtendedBatchStatus[] values()
for (ExtendedBatchStatus c : ExtendedBatchStatus.values()) System.out.println(c);
public static ExtendedBatchStatus 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 The Apache Software Foundation. All rights reserved.