public enum ControlAgentType extends java.lang.Enum<ControlAgentType>
Enum Constant and Description |
---|
BREAK_AGENT |
COMPLETE_AGENT |
CREEP_AGENT |
FAIL_AGENT |
SKIP_AGENT |
Modifier and Type | Method and Description |
---|---|
static ControlAgentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ControlAgentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ControlAgentType BREAK_AGENT
public static final ControlAgentType CREEP_AGENT
public static final ControlAgentType COMPLETE_AGENT
public static final ControlAgentType SKIP_AGENT
public static final ControlAgentType FAIL_AGENT
public static ControlAgentType[] values()
for (ControlAgentType c : ControlAgentType.values()) System.out.println(c);
public static ControlAgentType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null