|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<CircEndPointBehavior>
com.kuka.roboticsAPI.motionModel.CircEndPointBehavior
public enum CircEndPointBehavior
Enumeration which defines the orientation behavior at the end point of a
CIRC motion.
| Enum Constant Summary | |
|---|---|
Extrapolate
The orientation at the end of the CIRC motion is extrapolated
from the orientation of the target frame given to the motion:
If the circ angle parameter extends the motion, the programmed
orientation is reached at the programmed target point. |
|
Interpolate
The orientation at the end of the CIRC motion will be the
orientation of the target frame given to the motion. |
|
| Method Summary | |
|---|---|
static CircEndPointBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CircEndPointBehavior[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final CircEndPointBehavior Interpolate
CIRC motion will be the
orientation of the target frame given to the motion. Note that by setting
the circ angle with CIRC.setCircAngle(double) the actual
end point of the motion can be different from the given target frame.
public static final CircEndPointBehavior Extrapolate
CIRC motion is extrapolated
from the orientation of the target frame given to the motion:
| Method Detail |
|---|
public static CircEndPointBehavior[] values()
for (CircEndPointBehavior c : CircEndPointBehavior.values()) System.out.println(c);
public static CircEndPointBehavior valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||