Enum GoeChannelId
- java.lang.Object
-
- java.lang.Enum<GoeChannelId>
-
- io.openems.edge.evcs.goe.chargerhome.GoeChannelId
-
- All Implemented Interfaces:
ChannelId
,java.io.Serializable
,java.lang.Comparable<GoeChannelId>
public enum GoeChannelId extends java.lang.Enum<GoeChannelId> implements ChannelId
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTUAL_POWER
ALIAS
CHARGINGSTATION_STATE_ERROR
CURR_USER
CURRENT_L1
CURRENT_L2
CURRENT_L3
ENERGY_TOTAL
ERROR
FIRMWARE
PRODUCT
SERIAL
STATUS_GOE
VOLTAGE_L1
VOLTAGE_L2
VOLTAGE_L3
-
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 GoeChannelId
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GoeChannelId[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALIAS
public static final GoeChannelId ALIAS
-
PRODUCT
public static final GoeChannelId PRODUCT
-
SERIAL
public static final GoeChannelId SERIAL
-
FIRMWARE
public static final GoeChannelId FIRMWARE
-
STATUS_GOE
public static final GoeChannelId STATUS_GOE
-
ERROR
public static final GoeChannelId ERROR
-
CURR_USER
public static final GoeChannelId CURR_USER
-
VOLTAGE_L1
public static final GoeChannelId VOLTAGE_L1
-
VOLTAGE_L2
public static final GoeChannelId VOLTAGE_L2
-
VOLTAGE_L3
public static final GoeChannelId VOLTAGE_L3
-
CURRENT_L1
public static final GoeChannelId CURRENT_L1
-
CURRENT_L2
public static final GoeChannelId CURRENT_L2
-
CURRENT_L3
public static final GoeChannelId CURRENT_L3
-
ACTUAL_POWER
public static final GoeChannelId ACTUAL_POWER
-
ENERGY_TOTAL
public static final GoeChannelId ENERGY_TOTAL
-
CHARGINGSTATION_STATE_ERROR
public static final GoeChannelId CHARGINGSTATION_STATE_ERROR
-
-
Method Detail
-
values
public static GoeChannelId[] 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 (GoeChannelId c : GoeChannelId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GoeChannelId 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
-
-