public enum EmpaStatus extends java.lang.Enum<EmpaStatus>
Enum Constant and Description |
---|
CONNECTED
EmpaDeviceManager is connected to an Empatica device
|
CONNECTING
EmpaDeviceManager is connecting to an Empatica device
|
DISCONNECTED
EmpaDeviceManager is not connected to any device
|
DISCONNECTING
EmpaDeviceManager is disconnecting from an Empatica device
|
DISCOVERING
EmpaDeviceManager is searching for Empatica devices
|
READY
EmpaDeviceManager is ready for use
|
Modifier and Type | Method and Description |
---|---|
static EmpaStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EmpaStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmpaStatus READY
public static final EmpaStatus DISCONNECTED
public static final EmpaStatus CONNECTING
public static final EmpaStatus CONNECTED
public static final EmpaStatus DISCONNECTING
public static final EmpaStatus DISCOVERING
public static EmpaStatus[] values()
for (EmpaStatus c : EmpaStatus.values()) System.out.println(c);
public static EmpaStatus 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 namejava.lang.NullPointerException
- if the argument is null