Enum KacoSunSpecModel.S64203
- java.lang.Object
-
- java.lang.Enum<KacoSunSpecModel.S64203>
-
- io.openems.edge.batteryinverter.kaco.blueplanetgridsave.KacoSunSpecModel.S64203
-
- All Implemented Interfaces:
SunSpecPoint
,java.io.Serializable
,java.lang.Comparable<KacoSunSpecModel.S64203>
- Enclosing class:
- KacoSunSpecModel
public static enum KacoSunSpecModel.S64203 extends java.lang.Enum<KacoSunSpecModel.S64203> implements SunSpecPoint
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
KacoSunSpecModel.S64203.S64203EmsErrCode
-
Nested classes/interfaces inherited from interface io.openems.edge.bridge.modbus.sunspec.SunSpecPoint
SunSpecPoint.PointCategory, SunSpecPoint.PointImpl, SunSpecPoint.PointType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BAT_ID_0
BAT_SOC_0
BAT_SOH_0
BAT_SW_SUM_0
BAT_SW_VER_0
BAT_TEMP_0
E_M_S_ERR_CODE
SOC_SF
SOH_SF
TEMP_SF
VERSION_MAJOR
VERSION_MINOR
-
Field Summary
Fields Modifier and Type Field Description protected SunSpecPoint.PointImpl
impl
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description SunSpecPoint.PointImpl
get()
The internal PointImpl object for easier handling in Enums.static KacoSunSpecModel.S64203
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static KacoSunSpecModel.S64203[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface io.openems.edge.bridge.modbus.sunspec.SunSpecPoint
getChannelId, isDefined, name
-
-
-
-
Enum Constant Detail
-
VERSION_MAJOR
public static final KacoSunSpecModel.S64203 VERSION_MAJOR
-
VERSION_MINOR
public static final KacoSunSpecModel.S64203 VERSION_MINOR
-
E_M_S_ERR_CODE
public static final KacoSunSpecModel.S64203 E_M_S_ERR_CODE
-
SOC_SF
public static final KacoSunSpecModel.S64203 SOC_SF
-
SOH_SF
public static final KacoSunSpecModel.S64203 SOH_SF
-
TEMP_SF
public static final KacoSunSpecModel.S64203 TEMP_SF
-
BAT_ID_0
public static final KacoSunSpecModel.S64203 BAT_ID_0
-
BAT_SOC_0
public static final KacoSunSpecModel.S64203 BAT_SOC_0
-
BAT_SOH_0
public static final KacoSunSpecModel.S64203 BAT_SOH_0
-
BAT_TEMP_0
public static final KacoSunSpecModel.S64203 BAT_TEMP_0
-
BAT_SW_VER_0
public static final KacoSunSpecModel.S64203 BAT_SW_VER_0
-
BAT_SW_SUM_0
public static final KacoSunSpecModel.S64203 BAT_SW_SUM_0
-
-
Field Detail
-
impl
protected final SunSpecPoint.PointImpl impl
-
-
Method Detail
-
values
public static KacoSunSpecModel.S64203[] 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 (KacoSunSpecModel.S64203 c : KacoSunSpecModel.S64203.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KacoSunSpecModel.S64203 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
-
get
public SunSpecPoint.PointImpl get()
Description copied from interface:SunSpecPoint
The internal PointImpl object for easier handling in Enums.- Specified by:
get
in interfaceSunSpecPoint
- Returns:
- the internal PointImpl
-
-