ecologylab.sensor.gps
Enum SimGPS.PlayMode

java.lang.Object
  extended by java.lang.Enum<SimGPS.PlayMode>
      extended by ecologylab.sensor.gps.SimGPS.PlayMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SimGPS.PlayMode>
Enclosing class:
SimGPS

public static enum SimGPS.PlayMode
extends java.lang.Enum<SimGPS.PlayMode>


Enum Constant Summary
FORWARD_BACKWARD
           
LOOP_BACKWARD
           
LOOP_FORWARD
           
 
Method Summary
static SimGPS.PlayMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SimGPS.PlayMode[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

LOOP_FORWARD

public static final SimGPS.PlayMode LOOP_FORWARD

FORWARD_BACKWARD

public static final SimGPS.PlayMode FORWARD_BACKWARD

LOOP_BACKWARD

public static final SimGPS.PlayMode LOOP_BACKWARD
Method Detail

values

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

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

valueOf

public static SimGPS.PlayMode 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