public static enum DynamicCompositeAgent.Status extends Enum<DynamicCompositeAgent.Status>
Enum to indicate the current status of a DynamicCompositeAgent.| Enum Constant and Description |
|---|
ACTIVE
Agent is not active after a successful
DynamicCompositeAgent.onStart() |
CLOSED
Agent has been closed.
|
INIT
Agent is being initialised and has not yet been started.
|
| Modifier and Type | Method and Description |
|---|---|
static DynamicCompositeAgent.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DynamicCompositeAgent.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DynamicCompositeAgent.Status INIT
public static final DynamicCompositeAgent.Status ACTIVE
DynamicCompositeAgent.onStart()public static final DynamicCompositeAgent.Status CLOSED
public static DynamicCompositeAgent.Status[] values()
for (DynamicCompositeAgent.Status c : DynamicCompositeAgent.Status.values()) System.out.println(c);
public static DynamicCompositeAgent.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 © 2014-2022 Real Logic Limited. All Rights Reserved.