Package io.openems.edge.meter.api
Enum Class MeterType
- All Implemented Interfaces:
Serializable
,Comparable<MeterType>
,Constable
Defines the type of the Meter.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDefines a Consumption-Meter that is metered, i.e.Defines a Consumption-Meter that is NOT metered, i.e.Defines a Grid-Meter, i.e.Defines a Production-Meter, i.e.Defines a Production+Consumption-Meter, i.e. -
Method Summary
-
Enum Constant Details
-
GRID
Defines a Grid-Meter, i.e. a meter that is measuring at the grid connection point (German: "Netzanschlusspunkt") -
PRODUCTION
Defines a Production-Meter, i.e. a meter that is measuring an electric producer like a photovoltaics installation -
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
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
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
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
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 nameNullPointerException
- if the argument is null
-