public static enum Aerotech.RampMode extends Enum<Aerotech.RampMode>
#setRampMode(org.lsst.ccs.subsystem.motorplatform.bot.Aerotech.RampMode)| Enum Constant and Description |
|---|
DIST
Ramping occurs within a given distance of the end points of the motion .
|
RATE
Ramp using a given rate of acceleration/deceleration.
|
TIME
Take a given amount of time to ramp up or down.
|
| Modifier and Type | Method and Description |
|---|---|
static Aerotech.RampMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Aerotech.RampMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Aerotech.RampMode RATE
public static final Aerotech.RampMode DIST
public static final Aerotech.RampMode TIME
public static Aerotech.RampMode[] values()
for (Aerotech.RampMode c : Aerotech.RampMode.values()) System.out.println(c);
public static Aerotech.RampMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021 LSST. All rights reserved.