sk.robotics.rlcs.data
Enum Movement.Direction

java.lang.Object
  extended by java.lang.Enum<Movement.Direction>
      extended by sk.robotics.rlcs.data.Movement.Direction
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Movement.Direction>
Enclosing class:
Movement

public static enum Movement.Direction
extends java.lang.Enum<Movement.Direction>


Enum Constant Summary
BK
           
FD
           
LT
           
RT
           
 
Method Summary
 boolean isBk()
           
 boolean isFd()
           
 boolean isFdOrBk()
           
 boolean isLt()
           
 boolean isLtOrRt()
           
 boolean isRt()
           
 double toRadians()
           
static Movement.Direction valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Movement.Direction[] 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

FD

public static final Movement.Direction FD

BK

public static final Movement.Direction BK

LT

public static final Movement.Direction LT

RT

public static final Movement.Direction RT
Method Detail

values

public static Movement.Direction[] 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 (Movement.Direction c : Movement.Direction.values())
    System.out.println(c);

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

valueOf

public static Movement.Direction 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

isFd

public boolean isFd()

isBk

public boolean isBk()

isLt

public boolean isLt()

isRt

public boolean isRt()

isFdOrBk

public boolean isFdOrBk()

isLtOrRt

public boolean isLtOrRt()

toRadians

public double toRadians()