|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<LiftState>
com.kuka.nav.lift.LiftState
public enum LiftState
Enumeration to represent the lift state as a traffic light.
| Enum Constant Summary | |
|---|---|
ERROR
There is an error present and the lift cannot execute motions. |
|
UNKNOWN
The state could not be decoded from the base system or has not been updated. |
|
WARNING
There is a warning present or lift motions are not executable at the moment. |
|
WORKING
The lift is in the condition to execute motions. |
|
| Method Summary | |
|---|---|
String |
getDisplayName()
|
static LiftState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static LiftState[] |
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 LiftState WORKING
public static final LiftState WARNING
public static final LiftState ERROR
public static final LiftState UNKNOWN
| Method Detail |
|---|
public static LiftState[] values()
for (LiftState c : LiftState.values()) System.out.println(c);
public static LiftState 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 getDisplayName()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||