public enum TacEventType extends java.lang.Enum<TacEventType> implements cz.agents.alite.common.event.EventType
Enum Constant and Description |
---|
CLOCK_TICK |
GO_TO_WAYPOINT |
INTERPOLATED_MOVE |
MOVE |
MOVE_STARTED |
SENSE_ALARM |
SENSE_DIRECTION |
SENSE_MOVE_STARTED |
SENSE_PATATTACK |
SENSE_PERSON_HIT |
SENSE_POSITION |
SENSE_POSITION_ORIENTATION |
SENSE_WALL_HIT |
SENSE_WAYPOINT |
STEP |
TURN |
WALK |
WAYPOINT_REACHED |
Modifier and Type | Method and Description |
---|---|
static TacEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TacEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TacEventType STEP
public static final TacEventType MOVE
public static final TacEventType INTERPOLATED_MOVE
public static final TacEventType TURN
public static final TacEventType SENSE_POSITION
public static final TacEventType SENSE_DIRECTION
public static final TacEventType WALK
public static final TacEventType SENSE_WALL_HIT
public static final TacEventType SENSE_PERSON_HIT
public static final TacEventType GO_TO_WAYPOINT
public static final TacEventType SENSE_WAYPOINT
public static final TacEventType WAYPOINT_REACHED
public static final TacEventType SENSE_POSITION_ORIENTATION
public static final TacEventType MOVE_STARTED
public static final TacEventType CLOCK_TICK
public static final TacEventType SENSE_MOVE_STARTED
public static final TacEventType SENSE_ALARM
public static final TacEventType SENSE_PATATTACK
public static TacEventType[] values()
for (TacEventType c : TacEventType.values()) System.out.println(c);
public static TacEventType 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