|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<NavExecutionState>
com.kuka.nav.command.NavExecutionState
public enum NavExecutionState
Represents state of a navigation command execution.
| Enum Constant Summary | |
|---|---|
AWAITING_BLENDING
The container is waiting because of blending configuration. |
|
CREATED
Container is created (constructor is called), but not sent to the mobile robot yet. |
|
EXECUTING
The container is currently executing. |
|
FINALIZED
The container has finished its execution and does not influence the robot's pose. |
|
FINISHED
The container has finished its execution but still can influence the robot's pose. |
|
INITIAL
First state, container is ready to be created. |
|
QUEUED
The container was sent to the mobile robot and waits for it's execution. |
|
RECOVERING
The container is trying to recover from an error. |
|
| Method Summary | |
|---|---|
boolean |
isAwaitingBlending()
Command (responsible execution container) was executed, but it is waiting because of blending configuration. |
boolean |
isExecuting()
|
boolean |
isFinalized()
|
boolean |
isFinished()
|
boolean |
isQueued()
|
boolean |
isRecovering()
Command (responsible execution container) is recovering from an error. |
static NavExecutionState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static NavExecutionState[] |
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 |
| Methods inherited from interface java.lang.Comparable |
|---|
compareTo |
| Enum Constant Detail |
|---|
public static final NavExecutionState INITIAL
public static final NavExecutionState CREATED
public static final NavExecutionState QUEUED
public static final NavExecutionState EXECUTING
public static final NavExecutionState RECOVERING
public static final NavExecutionState AWAITING_BLENDING
public static final NavExecutionState FINISHED
Note: This does not say anything about the result of the command, but only about it's state of execution.
public static final NavExecutionState FINALIZED
Note: This does not say anything about the result of the command, but only about it's state of execution.
| Method Detail |
|---|
public static NavExecutionState[] values()
for (NavExecutionState c : NavExecutionState.values()) System.out.println(c);
public static NavExecutionState 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 boolean isQueued()
isQueued in interface com.kuka.command.IExecutionState<NavExecutionState>public boolean isExecuting()
isExecuting in interface com.kuka.command.IExecutionState<NavExecutionState>public boolean isRecovering()
true if command is recovering.public boolean isAwaitingBlending()
true if command is awaiting blending.public boolean isFinished()
isFinished in interface com.kuka.command.IExecutionState<NavExecutionState>public boolean isFinalized()
isFinalized in interface com.kuka.command.IExecutionState<NavExecutionState>
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||