|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<MapZoneInfluence>
com.kuka.nav.command.MapZoneInfluence
public enum MapZoneInfluence
Info whether a map zone is currently influencing a motion.
| Enum Constant Summary | |
|---|---|
ERROR
An error occurred trying to influence the robot's motion because of an interfering map zone. |
|
NOT_INFLUENCING
No map zone is influencing the robot's motion. |
|
SLOWING_DOWN
The robot was slowed down approaching a map zone. |
|
STOP_APPROACHING_MAPZONE
The robot was stopped approaching a map zone. |
|
STOP_INSIDE_MAPZONE
The robot stopped inside a map zone. |
|
UNKNOWN
State is unknown. |
|
| Method Summary | |
|---|---|
static MapZoneInfluence |
fromName(String name)
Creates the error type from the given name. |
String |
getName()
Returns the name of this map zone info. |
String |
toString()
|
static MapZoneInfluence |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static MapZoneInfluence[] |
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, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final MapZoneInfluence UNKNOWN
public static final MapZoneInfluence STOP_INSIDE_MAPZONE
public static final MapZoneInfluence STOP_APPROACHING_MAPZONE
public static final MapZoneInfluence SLOWING_DOWN
public static final MapZoneInfluence ERROR
public static final MapZoneInfluence NOT_INFLUENCING
| Method Detail |
|---|
public static MapZoneInfluence[] values()
for (MapZoneInfluence c : MapZoneInfluence.values()) System.out.println(c);
public static MapZoneInfluence 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 String getName()
public String toString()
toString in class Enum<MapZoneInfluence>public static MapZoneInfluence fromName(String name)
name - the name
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||