|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<CartDOF>
com.kuka.roboticsAPI.geometricModel.CartDOF
public enum CartDOF
This class represents degrees of freedom and sets of translational and rotational degrees of freedom.
| Enum Constant Summary | |
|---|---|
A
Rotation in A direction, i.e. around positive Z axis. |
|
ALL
All six degrees of freedom, i.e. |
|
B
Rotation in B direction, i.e. around positive Y axis. |
|
C
Rotation in C direction, i.e. around positive X axis. |
|
ROT
All rotational degrees of freedom, i.e. |
|
TRANSL
All translational degrees of freedom, i.e. |
|
X
Translation in X direction. |
|
Y
Translation in Y direction. |
|
Z
Translation in Z direction. |
|
| Method Summary | |
|---|---|
boolean |
isRotDof()
Return true, if this is a rotational degree of freedom, i.e. |
boolean |
isTranslDof()
Return true, if this is a translational degree of freedom, i.e. |
int |
toInt()
Gets the internal value for the specific enum item. |
static CartDOF |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CartDOF[] |
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 CartDOF X
public static final CartDOF Y
public static final CartDOF Z
public static final CartDOF A
public static final CartDOF B
public static final CartDOF C
public static final CartDOF ALL
public static final CartDOF TRANSL
public static final CartDOF ROT
| Method Detail |
|---|
public static CartDOF[] values()
for (CartDOF c : CartDOF.values()) System.out.println(c);
public static CartDOF 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 nullpublic int toInt()
public boolean isTranslDof()
public boolean isRotDof()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||