|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<JointEnum>
com.kuka.roboticsAPI.deviceModel.JointEnum
public enum JointEnum
This type specifies a joint of a motion. This is needed for joint specific programming, where the programmer can set values for a single joint.
| Enum Constant Summary | |
|---|---|
J1
Joint 1. |
|
J10
Joint 10. |
|
J11
Joint 11. |
|
J12
Joint 12. |
|
J2
Joint 2. |
|
J3
Joint 3. |
|
J4
Joint 4. |
|
J5
Joint 5. |
|
J6
Joint 6. |
|
J7
Joint 7. |
|
J8
Joint 8. |
|
J9
Joint 9. |
|
| Method Summary | |
|---|---|
int |
toInt()
Gets the internal value for the specific joint. |
static JointEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static JointEnum[] |
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 JointEnum J1
public static final JointEnum J2
public static final JointEnum J3
public static final JointEnum J4
public static final JointEnum J5
public static final JointEnum J6
public static final JointEnum J7
public static final JointEnum J8
public static final JointEnum J9
public static final JointEnum J10
public static final JointEnum J11
public static final JointEnum J12
| Method Detail |
|---|
public static JointEnum[] values()
for (JointEnum c : JointEnum.values()) System.out.println(c);
public static JointEnum 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()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||