public enum JobExitStatus extends java.lang.Enum<JobExitStatus>
Enum Constant and Description |
---|
COMPLETED_WITH_WARNINGS
The task reported some problems but the work was accomplished.
|
FAILURE
The task failed.
|
IN_PROGRESS
Job is running
|
INTERRUPTED
The task has been interrupted.
|
SUCCESS
Successful execution
|
UNKNOWN
The task never run or all records was purge.
|
Modifier and Type | Method and Description |
---|---|
static JobExitStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JobExitStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobExitStatus IN_PROGRESS
public static final JobExitStatus SUCCESS
public static final JobExitStatus COMPLETED_WITH_WARNINGS
public static final JobExitStatus FAILURE
public static final JobExitStatus UNKNOWN
public static final JobExitStatus INTERRUPTED
public static JobExitStatus[] values()
for (JobExitStatus c : JobExitStatus.values()) System.out.println(c);
public static JobExitStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2021. All Rights Reserved.