|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ControllerBootState>
com.kuka.roboticsAPI.controllerModel.ControllerBootState
public enum ControllerBootState
Possible booting state of the controller.
| Enum Constant Summary | |
|---|---|
Booting
Controller is booting. |
|
Ready
Controller is ready to use. |
|
ReadyWithWarning
controller is ready to use, but during boot process some errors occurred. |
|
Shutdown
the controller is about to be shut down. |
|
StartupFailed
the startup of the controller failed. |
|
Unknown
Controller state is undefined (e.g. after start). |
|
| Method Summary | |
|---|---|
static ControllerBootState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ControllerBootState[] |
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 ControllerBootState Unknown
public static final ControllerBootState Ready
public static final ControllerBootState ReadyWithWarning
public static final ControllerBootState Booting
public static final ControllerBootState StartupFailed
public static final ControllerBootState Shutdown
| Method Detail |
|---|
public static ControllerBootState[] values()
for (ControllerBootState c : ControllerBootState.values()) System.out.println(c);
public static ControllerBootState 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 | |||||||||