Enum Class ActuatorType

java.lang.Object
java.lang.Enum<ActuatorType>
entity.actuator.ActuatorType
All Implemented Interfaces:
Serializable, Comparable<ActuatorType>, Constable

public enum ActuatorType extends Enum<ActuatorType>
Enum that describes all the actuators type.
  • Enum Constant Details

    • HEATING

      public static final ActuatorType HEATING
      Heating.
    • COOLING

      public static final ActuatorType COOLING
      Cooling.
    • VENTILATION

      public static final ActuatorType VENTILATION
      Ventilation.
    • AMBIENT_LIGHT

      public static final ActuatorType AMBIENT_LIGHT
      Ambient light.
    • SURGICAL_LIGHT

      public static final ActuatorType SURGICAL_LIGHT
      Surgical light.
  • Method Details

    • values

      public static ActuatorType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ActuatorType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null