Enum KebaChannelId
- java.lang.Object
-
- java.lang.Enum<KebaChannelId>
-
- io.openems.edge.evcs.keba.kecontact.KebaChannelId
-
- All Implemented Interfaces:
ChannelId
,java.io.Serializable
,java.lang.Comparable<KebaChannelId>
public enum KebaChannelId extends java.lang.Enum<KebaChannelId> 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 KebaChannelId
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static KebaChannelId[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALIAS
public static final KebaChannelId ALIAS
-
PRODUCT
public static final KebaChannelId PRODUCT
-
SERIAL
public static final KebaChannelId SERIAL
-
FIRMWARE
public static final KebaChannelId FIRMWARE
-
COM_MODULE
public static final KebaChannelId COM_MODULE
-
DIP_SWITCH_1
public static final KebaChannelId DIP_SWITCH_1
-
DIP_SWITCH_2
public static final KebaChannelId DIP_SWITCH_2
-
DIP_SWITCH_MAX_HW
public static final KebaChannelId DIP_SWITCH_MAX_HW
-
STATUS_KEBA
public static final KebaChannelId STATUS_KEBA
-
ERROR_1
public static final KebaChannelId ERROR_1
-
ERROR_2
public static final KebaChannelId ERROR_2
-
PLUG
public static final KebaChannelId PLUG
-
ENABLE_SYS
public static final KebaChannelId ENABLE_SYS
-
ENABLE_USER
public static final KebaChannelId ENABLE_USER
-
MAX_CURR
public static final KebaChannelId MAX_CURR
-
MAX_CURR_PERCENT
public static final KebaChannelId MAX_CURR_PERCENT
-
CURR_USER
public static final KebaChannelId CURR_USER
-
CURR_FAILSAFE
public static final KebaChannelId CURR_FAILSAFE
-
TIMEOUT_FAILSAFE
public static final KebaChannelId TIMEOUT_FAILSAFE
-
CURR_TIMER
public static final KebaChannelId CURR_TIMER
-
TIMEOUT_CT
public static final KebaChannelId TIMEOUT_CT
-
OUTPUT
public static final KebaChannelId OUTPUT
-
INPUT
public static final KebaChannelId INPUT
-
VOLTAGE_L1
public static final KebaChannelId VOLTAGE_L1
-
VOLTAGE_L2
public static final KebaChannelId VOLTAGE_L2
-
VOLTAGE_L3
public static final KebaChannelId VOLTAGE_L3
-
CURRENT_L1
public static final KebaChannelId CURRENT_L1
-
CURRENT_L2
public static final KebaChannelId CURRENT_L2
-
CURRENT_L3
public static final KebaChannelId CURRENT_L3
-
ACTUAL_POWER
public static final KebaChannelId ACTUAL_POWER
-
COS_PHI
public static final KebaChannelId COS_PHI
-
ENERGY_TOTAL
public static final KebaChannelId ENERGY_TOTAL
-
DIP_SWITCH_ERROR_1_3_NOT_SET_FOR_COMM
public static final KebaChannelId DIP_SWITCH_ERROR_1_3_NOT_SET_FOR_COMM
-
DIP_SWITCH_ERROR_2_6_NOT_SET_FOR_STATIC_IP
public static final KebaChannelId DIP_SWITCH_ERROR_2_6_NOT_SET_FOR_STATIC_IP
-
DIP_SWITCH_ERROR_2_6_SET_FOR_DYNAMIC_IP
public static final KebaChannelId DIP_SWITCH_ERROR_2_6_SET_FOR_DYNAMIC_IP
-
DIP_SWITCH_INFO_2_5_SET_FOR_MASTER_SLAVE_COMM
public static final KebaChannelId DIP_SWITCH_INFO_2_5_SET_FOR_MASTER_SLAVE_COMM
-
DIP_SWITCH_INFO_2_8_SET_FOR_INSTALLATION
public static final KebaChannelId DIP_SWITCH_INFO_2_8_SET_FOR_INSTALLATION
-
PRODUCT_SERIES_IS_NOT_COMPATIBLE
public static final KebaChannelId PRODUCT_SERIES_IS_NOT_COMPATIBLE
-
NO_ENERGY_METER_INSTALLED
public static final KebaChannelId NO_ENERGY_METER_INSTALLED
-
CHARGINGSTATION_STATE_ERROR
public static final KebaChannelId CHARGINGSTATION_STATE_ERROR
-
-
Method Detail
-
values
public static KebaChannelId[] 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 (KebaChannelId c : KebaChannelId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KebaChannelId 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
-
-