Enum Class MeterType

java.lang.Object
java.lang.Enum<MeterType>
io.openems.edge.meter.api.MeterType
All Implemented Interfaces:
Serializable, Comparable<MeterType>, Constable

public enum MeterType extends Enum<MeterType>
Defines the type of the Meter.
  • Enum Constant Details

    • GRID

      public static final MeterType GRID
      Defines a Grid-Meter, i.e. a meter that is measuring at the grid connection point (German: "Netzanschlusspunkt")
    • PRODUCTION

      public static final MeterType PRODUCTION
      Defines a Production-Meter, i.e. a meter that is measuring an electric producer like a photovoltaics installation
    • PRODUCTION_AND_CONSUMPTION

      public static final MeterType PRODUCTION_AND_CONSUMPTION
      Defines a Production+Consumption-Meter, i.e. a meter that is measuring something that is an electric producer and consumer at the same time, like a non-controlled, external energy storage system.
    • CONSUMPTION_METERED

      public static final MeterType CONSUMPTION_METERED
      Defines a Consumption-Meter that is metered, i.e. a meter that is measuring an electric consumer like a heating-element or electric car.

      Note: Consumption is generally calculated using the data from Grid-Meter, Production-Meter and charge/discharge of battery. The value of CONSUMPTION_METERED is _not added_ to this calculated consumption as it is expected to be already measured by the Grid-Meter.

    • CONSUMPTION_NOT_METERED

      public static final MeterType CONSUMPTION_NOT_METERED
      Defines a Consumption-Meter that is NOT metered, i.e. a meter that is measuring an electric consumer like a heating-element or electric car.

      Note: Consumption is generally calculated using the data from Grid-Meter, Production-Meter and charge/discharge of battery. The value of CONSUMPTION_NOT_METERED is _added_ to this calculated consumption as it is expected to be NOT already measured by the Grid-Meter.

  • Method Details

    • values

      public static MeterType[] 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 MeterType 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