public static enum CycleClimb.ClimbStage extends java.lang.Enum<CycleClimb.ClimbStage>
| Enum Constant and Description |
|---|
ARM_CLIMB |
DEPLOY_PISTONS |
RETRACT_BACK_PISTONS |
RETRACT_FRONT_PISTONS_AND_STOW_ARM |
| Modifier and Type | Method and Description |
|---|---|
static CycleClimb.ClimbStage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CycleClimb.ClimbStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CycleClimb.ClimbStage DEPLOY_PISTONS
public static final CycleClimb.ClimbStage ARM_CLIMB
public static final CycleClimb.ClimbStage RETRACT_FRONT_PISTONS_AND_STOW_ARM
public static final CycleClimb.ClimbStage RETRACT_BACK_PISTONS
public static CycleClimb.ClimbStage[] values()
for (CycleClimb.ClimbStage c : CycleClimb.ClimbStage.values()) System.out.println(c);
public static CycleClimb.ClimbStage valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null