public static enum MotionTarget.TargetActivity extends java.lang.Enum<MotionTarget.TargetActivity>
| Enum Constant and Description | 
|---|
| AutoPosition and velocity targets are both initially inactive,
 but will each be activated when a value is set for them | 
| NonePosition and velocity targets are both inactive | 
| PositionPosition target is active, velocity target is inactive | 
| PositionVelocityPosition and velocity targets are both active | 
| VelocityVelocity target is active, position target is inactive | 
| Modifier and Type | Method and Description | 
|---|---|
| static MotionTarget.TargetActivity | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static MotionTarget.TargetActivity[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final MotionTarget.TargetActivity Position
public static final MotionTarget.TargetActivity Velocity
public static final MotionTarget.TargetActivity PositionVelocity
public static final MotionTarget.TargetActivity None
public static final MotionTarget.TargetActivity Auto
public static MotionTarget.TargetActivity[] values()
for (MotionTarget.TargetActivity c : MotionTarget.TargetActivity.values()) System.out.println(c);
public static MotionTarget.TargetActivity 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