public enum TemperatureSensorEvent extends Enum<TemperatureSensorEvent>
| Enum Constant and Description |
|---|
HIGH_TEMPERATURE_DETECTED |
LOW_TEMPERATURE_DETECTED |
NO_CONDITION_DETECTED |
RATE_OF_CHANGE_TOO_FAST |
| Modifier and Type | Method and Description |
|---|---|
static TemperatureSensorEvent |
getTemperatureSensorEvent(int val)
convert int to enum item
|
static TemperatureSensorEvent |
toTemperatureSensorEvent(String str)
convert String to enum item
|
int |
value() |
static TemperatureSensorEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TemperatureSensorEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TemperatureSensorEvent HIGH_TEMPERATURE_DETECTED
public static final TemperatureSensorEvent LOW_TEMPERATURE_DETECTED
public static final TemperatureSensorEvent RATE_OF_CHANGE_TOO_FAST
public static final TemperatureSensorEvent NO_CONDITION_DETECTED
public static TemperatureSensorEvent[] values()
for (TemperatureSensorEvent c : TemperatureSensorEvent.values()) System.out.println(c);
public static TemperatureSensorEvent valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int value()
public static TemperatureSensorEvent toTemperatureSensorEvent(String str)
str - public static TemperatureSensorEvent getTemperatureSensorEvent(int val)
int - Copyright © 2018 universAAL Consortium. All rights reserved.