org.openmuc.jmbus
Enum VariableDataBlock.Description

java.lang.Object
  extended by java.lang.Enum<VariableDataBlock.Description>
      extended by org.openmuc.jmbus.VariableDataBlock.Description
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<VariableDataBlock.Description>
Enclosing class:
VariableDataBlock

public static enum VariableDataBlock.Description
extends java.lang.Enum<VariableDataBlock.Description>


Enum Constant Summary
CURRENT
           
DATE
           
DATE_TIME
           
ENERGY
           
EXTERNAL_TEMPERATURE
           
FABRICATION_NO
           
FIRMWARE_VERSION
           
FLOW_TEMPERATURE
           
HARDWARE_VERSION
           
MASS
           
MASS_FLOW
           
MODEL_VERSION
           
ON_TIME
           
OPERATING_TIME
           
PARAMETER_SET_ID
           
POWER
           
PRESSURE
           
RETURN_TEMPERATURE
           
TEMPERATURE_DIFFERENCE
           
VOLTAGE
           
VOLUME
           
VOLUME_FLOW
           
VOLUME_FLOW_EXT
           
 
Method Summary
static VariableDataBlock.Description valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static VariableDataBlock.Description[] 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

ENERGY

public static final VariableDataBlock.Description ENERGY

VOLUME

public static final VariableDataBlock.Description VOLUME

MASS

public static final VariableDataBlock.Description MASS

ON_TIME

public static final VariableDataBlock.Description ON_TIME

OPERATING_TIME

public static final VariableDataBlock.Description OPERATING_TIME

POWER

public static final VariableDataBlock.Description POWER

VOLUME_FLOW

public static final VariableDataBlock.Description VOLUME_FLOW

VOLUME_FLOW_EXT

public static final VariableDataBlock.Description VOLUME_FLOW_EXT

MASS_FLOW

public static final VariableDataBlock.Description MASS_FLOW

FLOW_TEMPERATURE

public static final VariableDataBlock.Description FLOW_TEMPERATURE

RETURN_TEMPERATURE

public static final VariableDataBlock.Description RETURN_TEMPERATURE

TEMPERATURE_DIFFERENCE

public static final VariableDataBlock.Description TEMPERATURE_DIFFERENCE

EXTERNAL_TEMPERATURE

public static final VariableDataBlock.Description EXTERNAL_TEMPERATURE

PRESSURE

public static final VariableDataBlock.Description PRESSURE

DATE

public static final VariableDataBlock.Description DATE

DATE_TIME

public static final VariableDataBlock.Description DATE_TIME

VOLTAGE

public static final VariableDataBlock.Description VOLTAGE

CURRENT

public static final VariableDataBlock.Description CURRENT

FABRICATION_NO

public static final VariableDataBlock.Description FABRICATION_NO

MODEL_VERSION

public static final VariableDataBlock.Description MODEL_VERSION

PARAMETER_SET_ID

public static final VariableDataBlock.Description PARAMETER_SET_ID

HARDWARE_VERSION

public static final VariableDataBlock.Description HARDWARE_VERSION

FIRMWARE_VERSION

public static final VariableDataBlock.Description FIRMWARE_VERSION
Method Detail

values

public static VariableDataBlock.Description[] 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 (VariableDataBlock.Description c : VariableDataBlock.Description.values())
    System.out.println(c);

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

valueOf

public static VariableDataBlock.Description valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null