org.universAAL.lddi.lib.activityhub.devicemodel
Enum TemperatureSensorEvent

Package class diagram package TemperatureSensorEvent
java.lang.Object
  extended by java.lang.Enum<TemperatureSensorEvent>
      extended by org.universAAL.lddi.lib.activityhub.devicemodel.TemperatureSensorEvent
All Implemented Interfaces:
Serializable, Comparable<TemperatureSensorEvent>

public enum TemperatureSensorEvent
extends Enum<TemperatureSensorEvent>

sensor events of temperature sensor ISO 11073-10471

Author:
Thomas Fuxreiter (foex@gmx.at)

Enum Constant Summary
HIGH_TEMPERATURE_DETECTED
           
LOW_TEMPERATURE_DETECTED
           
NO_CONDITION_DETECTED
           
RATE_OF_CHANGE_TOO_FAST
           
 
Method Summary
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.
 
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

HIGH_TEMPERATURE_DETECTED

public static final TemperatureSensorEvent HIGH_TEMPERATURE_DETECTED

LOW_TEMPERATURE_DETECTED

public static final TemperatureSensorEvent LOW_TEMPERATURE_DETECTED

RATE_OF_CHANGE_TOO_FAST

public static final TemperatureSensorEvent RATE_OF_CHANGE_TOO_FAST

NO_CONDITION_DETECTED

public static final TemperatureSensorEvent NO_CONDITION_DETECTED
Method Detail

values

public static TemperatureSensorEvent[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (TemperatureSensorEvent c : TemperatureSensorEvent.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static TemperatureSensorEvent valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

value

public int value()

toTemperatureSensorEvent

public static TemperatureSensorEvent toTemperatureSensorEvent(String str)
convert String to enum item

Parameters:
str -
Returns:
enum item

getTemperatureSensorEvent

public static TemperatureSensorEvent getTemperatureSensorEvent(int val)
convert int to enum item

Parameters:
int -
Returns:
enum item


Copyright © 2014 universAAL Consortium. All Rights Reserved.