public static enum TargetSystemException.FailureType extends java.lang.Enum<TargetSystemException.FailureType>
| Enum Constant and Description |
|---|
DEPENDENCY_MISSING |
INITIALIZATION_FAILED |
INVALID_CONFIGURATION |
NOT_FOUND |
VALIDATION_FAILED |
| Modifier and Type | Method and Description |
|---|---|
static TargetSystemException.FailureType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TargetSystemException.FailureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TargetSystemException.FailureType NOT_FOUND
public static final TargetSystemException.FailureType INVALID_CONFIGURATION
public static final TargetSystemException.FailureType INITIALIZATION_FAILED
public static final TargetSystemException.FailureType VALIDATION_FAILED
public static final TargetSystemException.FailureType DEPENDENCY_MISSING
public static TargetSystemException.FailureType[] values()
for (TargetSystemException.FailureType c : TargetSystemException.FailureType.values()) System.out.println(c);
public static TargetSystemException.FailureType 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 null