cz.cuni.pogamut.Client
Enum PathManager.RunAlongPathState

java.lang.Object
  extended by java.lang.Enum<PathManager.RunAlongPathState>
      extended by cz.cuni.pogamut.Client.PathManager.RunAlongPathState
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PathManager.RunAlongPathState>
Enclosing class:
PathManager

private static enum PathManager.RunAlongPathState
extends java.lang.Enum<PathManager.RunAlongPathState>


Enum Constant Summary
ENTERING_LIFT
           
EXITING_LIFT
           
IN_CENTER_OF_THE_LIFT
           
PATH_RESTARTED
           
RUNNING_TO_NAVPOINT
           
 
Method Summary
static PathManager.RunAlongPathState valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PathManager.RunAlongPathState[] 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

PATH_RESTARTED

public static final PathManager.RunAlongPathState PATH_RESTARTED

RUNNING_TO_NAVPOINT

public static final PathManager.RunAlongPathState RUNNING_TO_NAVPOINT

ENTERING_LIFT

public static final PathManager.RunAlongPathState ENTERING_LIFT

IN_CENTER_OF_THE_LIFT

public static final PathManager.RunAlongPathState IN_CENTER_OF_THE_LIFT

EXITING_LIFT

public static final PathManager.RunAlongPathState EXITING_LIFT
Method Detail

values

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

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

valueOf

public static PathManager.RunAlongPathState 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