public static enum JobData.Result extends Enum<JobData.Result>
Enum Constant and Description |
---|
COMPLETE
Job result for indicating that the job completed successfully.
|
ERROR
Job result for indicating that the job had stopped because of
an error.
|
MISFIRED
Job result for indicating that the job is misfired.
|
NEVER_EXECUTED
Job result for indicating that the job has never been executed
previously (or because it is a draft job).
|
STOPPED
Job result for indicating that the job had stopped because of
an user request.
|
WARNING
Job result for indicating that the job completed with warnings.
|
Modifier and Type | Method and Description |
---|---|
static JobData.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobData.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobData.Result COMPLETE
public static final JobData.Result WARNING
public static final JobData.Result ERROR
public static final JobData.Result STOPPED
public static final JobData.Result MISFIRED
public static final JobData.Result NEVER_EXECUTED
public static JobData.Result[] values()
for (JobData.Result c : JobData.Result.values()) System.out.println(c);
public static JobData.Result 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 © 2025 Denodo Technologies. All rights reserved.