public enum State extends Enum<State>
| Enum Constant and Description |
|---|
ACTIVE |
BACK_OFF |
INIT |
SUSPECT |
SUSPENDED |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
int |
getState() |
static State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final State INIT
public static final State ACTIVE
public static final State SUSPECT
public static final State BACK_OFF
public static final State SUSPENDED
public static State[] values()
for (State c : State.values()) System.out.println(c);
public static State 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 nullpublic int getState()
public String getName()
Copyright © 2005–2019 Apache Software Foundation. All rights reserved.