|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<MasteringDeviceState>
com.kuka.roboticsAPI.deviceModel.MasteringDeviceState
public enum MasteringDeviceState
States of the mastering device (EMD, MMD). This device can be: - the electronic mastering device (EMD), which is used to master industrial robots (e.g. Agilus). This device is external and is mounted to the gauge cartridges, which can be found on the surface of the robot. - the magnetic mastering device (MMD), which is used to master the LBR IIWA.
| Enum Constant Summary | |
|---|---|
AXIS_IN_MASTERING_RANGE
The mastering device is connected and detected the mastering range. |
|
CONNECTED
The mastering device is connected. |
|
DISCONNECTED
The mastering device is disconnected. |
|
| Method Summary | |
|---|---|
static MasteringDeviceState |
valueOf(int state)
Returns the MasteringDeviceState representation of the mastering device state given as integer. |
static MasteringDeviceState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static MasteringDeviceState[] |
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 MasteringDeviceState DISCONNECTED
public static final MasteringDeviceState CONNECTED
public static final MasteringDeviceState AXIS_IN_MASTERING_RANGE
| Method Detail |
|---|
public static MasteringDeviceState[] values()
for (MasteringDeviceState c : MasteringDeviceState.values()) System.out.println(c);
public static MasteringDeviceState 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 static MasteringDeviceState valueOf(int state)
state - the mastering device state given as integer.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||