uk.ac.ed.inf.sdp2012.group7.strategy
Enum PlanTypes.ActionType

java.lang.Object
  extended by java.lang.Enum<PlanTypes.ActionType>
      extended by uk.ac.ed.inf.sdp2012.group7.strategy.PlanTypes.ActionType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PlanTypes.ActionType>
Enclosing class:
PlanTypes

public static enum PlanTypes.ActionType
extends java.lang.Enum<PlanTypes.ActionType>


Enum Constant Summary
ANGLE
           
BACKWARD_WITH_DISTANCE
           
BACKWARDS
           
DRIVE
           
FORWARD_WITH_DISTANCE
           
FORWARDS
           
KICK
           
STOP
           
 
Method Summary
static PlanTypes.ActionType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PlanTypes.ActionType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DRIVE

public static final PlanTypes.ActionType DRIVE

KICK

public static final PlanTypes.ActionType KICK

STOP

public static final PlanTypes.ActionType STOP

ANGLE

public static final PlanTypes.ActionType ANGLE

FORWARD_WITH_DISTANCE

public static final PlanTypes.ActionType FORWARD_WITH_DISTANCE

BACKWARD_WITH_DISTANCE

public static final PlanTypes.ActionType BACKWARD_WITH_DISTANCE

FORWARDS

public static final PlanTypes.ActionType FORWARDS

BACKWARDS

public static final PlanTypes.ActionType BACKWARDS
Method Detail

values

public static PlanTypes.ActionType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (PlanTypes.ActionType c : PlanTypes.ActionType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static PlanTypes.ActionType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null