|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<SSRExecutionFailureReason>
com.kuka.roboticsAPI.controllerModel.sunrise.api.SSRExecutionFailureReason
public enum SSRExecutionFailureReason
The possible failure reasons which may cause a SSR execution to not successfully execute.
| Enum Constant Summary | |
|---|---|
NOT_FOUND
The requested SSR has not been found. |
|
PROCESSING_ERROR
An error occurred during execution of a SSR. |
|
VERSION_MISMATCH
The requested version of a SSR has not been found. |
|
| Method Summary | |
|---|---|
int |
getCode()
Gets the internal error code. |
static SSRExecutionFailureReason |
getFailureReasonFromErrorCode(int errorCode)
Gets the failure reason of a SSR execution for a given error code. |
static SSRExecutionFailureReason |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SSRExecutionFailureReason[] |
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 SSRExecutionFailureReason NOT_FOUND
public static final SSRExecutionFailureReason VERSION_MISMATCH
public static final SSRExecutionFailureReason PROCESSING_ERROR
| Method Detail |
|---|
public static SSRExecutionFailureReason[] values()
for (SSRExecutionFailureReason c : SSRExecutionFailureReason.values()) System.out.println(c);
public static SSRExecutionFailureReason 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 getCode()
public static SSRExecutionFailureReason getFailureReasonFromErrorCode(int errorCode)
errorCode - the error code whose failure reason is requested
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||