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