|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<CollisionAvoidanceState>
com.kuka.nav.robot.CollisionAvoidanceState
public enum CollisionAvoidanceState
Enumeration to hold information about the collision avoidance running on the robot.
| Enum Constant Summary | |
|---|---|
NOT_INFLUENCING
state indicating that the colli is currently not influencing. |
|
SLOWING_DOWN
state indicating that the colli is currently slowing down the robot. |
|
STOPPING
state indicating that the colli is currently stopping the robot. |
|
UNDEFINED
state indicating an undefined colli state. |
|
| Method Summary | |
|---|---|
static CollisionAvoidanceState |
fromTypeId(int id)
Gets the stop condition defined through the given id. |
int |
getId()
Gets the id of the stop condition. |
String |
getTypeName()
Gets the name of the robot. |
static CollisionAvoidanceState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CollisionAvoidanceState[] |
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 CollisionAvoidanceState NOT_INFLUENCING
public static final CollisionAvoidanceState SLOWING_DOWN
public static final CollisionAvoidanceState STOPPING
public static final CollisionAvoidanceState UNDEFINED
| Method Detail |
|---|
public static CollisionAvoidanceState[] values()
for (CollisionAvoidanceState c : CollisionAvoidanceState.values()) System.out.println(c);
public static CollisionAvoidanceState 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 getId()
public String getTypeName()
public static CollisionAvoidanceState fromTypeId(int id)
id - The id.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||