public enum LogType extends Enum<LogType>
Enum Constant and Description |
---|
AGENT_MODEL |
GUI |
HIGH_SKILL |
INCOMING_MESSAGE |
INIT |
INTERNALS |
LOW_SKILL |
OTHER |
OUTCOMING_MESSAGE |
PLANNING |
WORLD_MODEL |
Modifier and Type | Method and Description |
---|---|
static LogType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogType INIT
public static final LogType PLANNING
public static final LogType AGENT_MODEL
public static final LogType WORLD_MODEL
public static final LogType INCOMING_MESSAGE
public static final LogType OUTCOMING_MESSAGE
public static final LogType INTERNALS
public static final LogType LOW_SKILL
public static final LogType HIGH_SKILL
public static final LogType GUI
public static final LogType OTHER
public static LogType[] values()
for (LogType c : LogType.values()) System.out.println(c);
public static LogType 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 null