public static enum MotionTarget.TargetActivity extends java.lang.Enum<MotionTarget.TargetActivity>
Enum Constant and Description |
---|
Auto
Position and velocity targets are both initially inactive,
but will each be activated when a value is set for them
|
None
Position and velocity targets are both inactive
|
Position
Position target is active, velocity target is inactive
|
PositionVelocity
Position and velocity targets are both active
|
Velocity
Velocity 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