public static enum ServiceRestartResult.ServiceRestartRetryResult extends java.lang.Enum<ServiceRestartResult.ServiceRestartRetryResult>
| Enum Constant and Description |
|---|
FAIL
Blocked request restart has failed.
|
NOT_ATTEMPTED_NO_REQUESTS
Blocked request restart was not attempted because there are no
requests to restart.
|
NOT_ATTEMPTED_RECON_IN_PROGRESS
Blocked request restart was not attempted because there is a reconciliation
in progress for the service.
|
NOT_ATTEMPTED_TEST_FAILED
Blocked request restart was not attempted because the communications
test failed.
|
SUCCESS
Blocked request restart was successful.
|
| Modifier and Type | Method and Description |
|---|---|
static ServiceRestartResult.ServiceRestartRetryResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ServiceRestartResult.ServiceRestartRetryResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceRestartResult.ServiceRestartRetryResult SUCCESS
public static final ServiceRestartResult.ServiceRestartRetryResult FAIL
public static final ServiceRestartResult.ServiceRestartRetryResult NOT_ATTEMPTED_RECON_IN_PROGRESS
public static final ServiceRestartResult.ServiceRestartRetryResult NOT_ATTEMPTED_TEST_FAILED
public static final ServiceRestartResult.ServiceRestartRetryResult NOT_ATTEMPTED_NO_REQUESTS
public static ServiceRestartResult.ServiceRestartRetryResult[] values()
for (ServiceRestartResult.ServiceRestartRetryResult c : ServiceRestartResult.ServiceRestartRetryResult.values()) System.out.println(c);
public static ServiceRestartResult.ServiceRestartRetryResult 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