protected static enum RunnableBase.Status extends Enum<RunnableBase.Status>
| Enum Constant and Description |
|---|
DESTROYED |
STARTED |
STARTING |
STOPPED |
STOPPING |
| Modifier and Type | Method and Description |
|---|---|
static RunnableBase.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RunnableBase.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunnableBase.Status STARTING
public static final RunnableBase.Status STARTED
public static final RunnableBase.Status STOPPING
public static final RunnableBase.Status STOPPED
public static final RunnableBase.Status DESTROYED
public static RunnableBase.Status[] values()
for (RunnableBase.Status c : RunnableBase.Status.values()) System.out.println(c);
public static RunnableBase.Status 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 © 2001–2020 JBoss by Red Hat. All rights reserved.