Package io.openems.edge.meter.api
Enum MeterType
- java.lang.Object
-
- java.lang.Enum<MeterType>
-
- io.openems.edge.meter.api.MeterType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONSUMPTION_METERED
Defines a Consumption-Meter that is metered, i.e.CONSUMPTION_NOT_METERED
Defines a Consumption-Meter that is NOT metered, i.e.GRID
Defines a Grid-Meter, i.e.PRODUCTION
Defines a Production-Meter, i.e.PRODUCTION_AND_CONSUMPTION
Defines a Production+Consumption-Meter, i.e.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MeterType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MeterType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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 Detail
-
values
public static MeterType[] 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 (MeterType c : MeterType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MeterType 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 namejava.lang.NullPointerException
- if the argument is null
-
-