|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ErrorHandlingAction>
com.kuka.roboticsAPI.motionModel.ErrorHandlingAction
public enum ErrorHandlingAction
Error handling actions for asynchronous motions.
| Enum Constant Summary | |
|---|---|
EndApplication
Terminates the application with a suitable exception. |
|
Ignore
Removes the failed motion and all currently executing or queued motions from the motion queue, so that the robot application can be continued. |
|
PauseMotion
Removes the failed motion and all currently executing or queued motions from the motion queue and sets the application state to MotionPaused. |
|
| Method Summary | |
|---|---|
static ErrorHandlingAction |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ErrorHandlingAction[] |
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 ErrorHandlingAction Ignore
public static final ErrorHandlingAction PauseMotion
public static final ErrorHandlingAction EndApplication
| Method Detail |
|---|
public static ErrorHandlingAction[] values()
for (ErrorHandlingAction c : ErrorHandlingAction.values()) System.out.println(c);
public static ErrorHandlingAction 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 null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||