protected static enum ConcurrentManaged.ManagedState extends Enum<ConcurrentManaged.ManagedState>
| Enum Constant and Description |
|---|
INITIALIZED |
STARTED |
STOPPED |
| Modifier and Type | Method and Description |
|---|---|
static ConcurrentManaged.ManagedState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConcurrentManaged.ManagedState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConcurrentManaged.ManagedState INITIALIZED
public static final ConcurrentManaged.ManagedState STARTED
public static final ConcurrentManaged.ManagedState STOPPED
public static ConcurrentManaged.ManagedState[] values()
for (ConcurrentManaged.ManagedState c : ConcurrentManaged.ManagedState.values()) System.out.println(c);
public static ConcurrentManaged.ManagedState 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 © 2017. All rights reserved.