public enum NodeStepFailureReason extends java.lang.Enum<NodeStepFailureReason> implements FailureReason
| Enum Constant and Description |
|---|
AuthenticationFailure
Authentication unsuccessful
|
ConnectionFailure
Connection unsuccessful
|
ConnectionTimeout
Timeout on connection
|
HostNotFound
Host name could not be resolved
|
NonZeroResultCode
Command or script execution result code was not zero
|
| Modifier and Type | Method and Description |
|---|---|
static NodeStepFailureReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeStepFailureReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeStepFailureReason HostNotFound
public static final NodeStepFailureReason ConnectionTimeout
public static final NodeStepFailureReason ConnectionFailure
public static final NodeStepFailureReason AuthenticationFailure
public static final NodeStepFailureReason NonZeroResultCode
public static NodeStepFailureReason[] values()
for (NodeStepFailureReason c : NodeStepFailureReason.values()) System.out.println(c);
public static NodeStepFailureReason 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