|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DeviceOnlineState>
com.biocomfort.TO.DeviceOnlineState
public enum DeviceOnlineState
The enumeration DeviceOnlineState
contains the possible
online states of a medical device. At the time the only possible states
are online or offline.
MedicalDeviceTO.getOnlineState()
Enum Constant Summary | |
---|---|
OFFLINE
The initial online state of a medical device. |
|
ONLINE
Indicates that the medical device is online. |
Method Summary | |
---|---|
static DeviceOnlineState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DeviceOnlineState[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DeviceOnlineState OFFLINE
DeviceOnlineState.ONLINE
. After a device is not
visible for some time the online state will change to
DeviceOnlineState.OFFLINE
.
public static final DeviceOnlineState ONLINE
DeviceBindingState
Method Detail |
---|
public static final DeviceOnlineState[] values()
for(DeviceOnlineState c : DeviceOnlineState.values()) System.out.println(c);
public static DeviceOnlineState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |