public enum JobFailureType extends Enum<JobFailureType>
| Enum Constant and Description |
|---|
INFRASTRUCTURE
Infrastructure type.
|
PROCESSING
Processing type.
|
UNKNOWN
Failure type is unknown.
|
| Modifier and Type | Method and Description |
|---|---|
static JobFailureType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobFailureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobFailureType UNKNOWN
public static final JobFailureType INFRASTRUCTURE
public static final JobFailureType PROCESSING
public static JobFailureType[] values()
for (JobFailureType c : JobFailureType.values()) System.out.println(c);
public static JobFailureType 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 © 2015–2017 IBM Corporation. Licensed under the Apache License, Version 2.0.