Package io.openems.edge.goodwe.gridmeter
Enum GoodWeGridMeter.ChannelId
- java.lang.Object
-
- java.lang.Enum<GoodWeGridMeter.ChannelId>
-
- io.openems.edge.goodwe.gridmeter.GoodWeGridMeter.ChannelId
-
- All Implemented Interfaces:
ChannelId
,java.io.Serializable
,java.lang.Comparable<GoodWeGridMeter.ChannelId>
- Enclosing interface:
- GoodWeGridMeter
public static enum GoodWeGridMeter.ChannelId extends java.lang.Enum<GoodWeGridMeter.ChannelId> implements ChannelId
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Doc
doc()
Gets the Channel Doc for this ChannelId.static GoodWeGridMeter.ChannelId
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GoodWeGridMeter.ChannelId[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
F_GRID_R
public static final GoodWeGridMeter.ChannelId F_GRID_R
-
F_GRID_S
public static final GoodWeGridMeter.ChannelId F_GRID_S
-
F_GRID_T
public static final GoodWeGridMeter.ChannelId F_GRID_T
-
P_GRID_T
public static final GoodWeGridMeter.ChannelId P_GRID_T
-
METER_POWER_FACTOR
public static final GoodWeGridMeter.ChannelId METER_POWER_FACTOR
-
HAS_NO_METER
public static final GoodWeGridMeter.ChannelId HAS_NO_METER
-
METER_CON_CORRECTLY_L1
public static final GoodWeGridMeter.ChannelId METER_CON_CORRECTLY_L1
-
METER_CON_REVERSE_L1
public static final GoodWeGridMeter.ChannelId METER_CON_REVERSE_L1
-
METER_CON_INCORRECTLY_L1
public static final GoodWeGridMeter.ChannelId METER_CON_INCORRECTLY_L1
-
METER_CON_CORRECTLY_L2
public static final GoodWeGridMeter.ChannelId METER_CON_CORRECTLY_L2
-
METER_CON_REVERSE_L2
public static final GoodWeGridMeter.ChannelId METER_CON_REVERSE_L2
-
METER_CON_INCORRECTLY_L2
public static final GoodWeGridMeter.ChannelId METER_CON_INCORRECTLY_L2
-
METER_CON_CORRECTLY_L3
public static final GoodWeGridMeter.ChannelId METER_CON_CORRECTLY_L3
-
METER_CON_REVERSE_L3
public static final GoodWeGridMeter.ChannelId METER_CON_REVERSE_L3
-
METER_CON_INCORRECTLY_L3
public static final GoodWeGridMeter.ChannelId METER_CON_INCORRECTLY_L3
-
-
Method Detail
-
values
public static GoodWeGridMeter.ChannelId[] 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 (GoodWeGridMeter.ChannelId c : GoodWeGridMeter.ChannelId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GoodWeGridMeter.ChannelId 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
-
-