ikayaki
Enum Project.ManualMovePosition
java.lang.Object
java.lang.Enum<Project.ManualMovePosition>
ikayaki.Project.ManualMovePosition
- All Implemented Interfaces:
- Serializable, Comparable<Project.ManualMovePosition>
- Enclosing class:
- Project
private static enum Project.ManualMovePosition
- extends Enum<Project.ManualMovePosition>
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
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