ikayaki
Enum Project.ManualMovePosition

java.lang.Object
  extended by java.lang.Enum<Project.ManualMovePosition>
      extended by ikayaki.Project.ManualMovePosition
All Implemented Interfaces:
Serializable, Comparable<Project.ManualMovePosition>
Enclosing class:
Project

private static enum Project.ManualMovePosition
extends Enum<Project.ManualMovePosition>


Enum Constant Summary
BACKGROUND
           
DEGAUSSER_Y
           
DEGAUSSER_Z
           
HOME
           
LEFT_LIMIT
           
MEASUREMENT
           
RIGHT_LIMIT
           
 
Method Summary
static Project.ManualMovePosition valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Project.ManualMovePosition[] 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

DEGAUSSER_Y

public static final Project.ManualMovePosition DEGAUSSER_Y

DEGAUSSER_Z

public static final Project.ManualMovePosition DEGAUSSER_Z

BACKGROUND

public static final Project.ManualMovePosition BACKGROUND

MEASUREMENT

public static final Project.ManualMovePosition MEASUREMENT

HOME

public static final Project.ManualMovePosition HOME

RIGHT_LIMIT

public static final Project.ManualMovePosition RIGHT_LIMIT

LEFT_LIMIT

public static final Project.ManualMovePosition LEFT_LIMIT
Method Detail

values

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

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

valueOf

public static Project.ManualMovePosition valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name