public enum SecondaryStatus extends Enum<SecondaryStatus>
| Enum Constant and Description |
|---|
FAILED_TO_UNMARSHALL_RESPONSE |
OK |
REST_CALL_FAILING |
TICKING_CLOCK_NOT_YET_INITIALIZED |
TICKING_CLOCK_STATUS_UNKNOWN |
UNKNOWN_STATE |
| Modifier and Type | Method and Description |
|---|---|
static SecondaryStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecondaryStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecondaryStatus TICKING_CLOCK_STATUS_UNKNOWN
public static final SecondaryStatus TICKING_CLOCK_NOT_YET_INITIALIZED
public static final SecondaryStatus OK
public static final SecondaryStatus REST_CALL_FAILING
public static final SecondaryStatus FAILED_TO_UNMARSHALL_RESPONSE
public static final SecondaryStatus UNKNOWN_STATE
public static SecondaryStatus[] values()
for (SecondaryStatus c : SecondaryStatus.values()) System.out.println(c);
public static SecondaryStatus 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 © 2010–2020 The Apache Software Foundation. All rights reserved.