Enum KacoSunSpecModel.S64202
- java.lang.Object
-
- java.lang.Enum<KacoSunSpecModel.S64202>
-
- io.openems.edge.batteryinverter.kaco.blueplanetgridsave.KacoSunSpecModel.S64202
-
- All Implemented Interfaces:
SunSpecPoint
,java.io.Serializable
,java.lang.Comparable<KacoSunSpecModel.S64202>
- Enclosing class:
- KacoSunSpecModel
public static enum KacoSunSpecModel.S64202 extends java.lang.Enum<KacoSunSpecModel.S64202> implements SunSpecPoint
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
KacoSunSpecModel.S64202.S64202EnLimit
-
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 A_SF
CHA_CUTOFF_A_0
CHA_MAX_A_0
CHA_MAX_V_0
DIS_CUTOFF_A_0
DIS_MAX_A_0
DIS_MIN_V_0
EN_LIMIT_0
RESERVED_0
RESERVED_2
RESERVED_3
V_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.S64202
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static KacoSunSpecModel.S64202[]
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.S64202 VERSION_MAJOR
-
VERSION_MINOR
public static final KacoSunSpecModel.S64202 VERSION_MINOR
-
RESERVED_2
public static final KacoSunSpecModel.S64202 RESERVED_2
-
RESERVED_3
public static final KacoSunSpecModel.S64202 RESERVED_3
-
V_SF
public static final KacoSunSpecModel.S64202 V_SF
-
A_SF
public static final KacoSunSpecModel.S64202 A_SF
-
DIS_MIN_V_0
public static final KacoSunSpecModel.S64202 DIS_MIN_V_0
-
DIS_MAX_A_0
public static final KacoSunSpecModel.S64202 DIS_MAX_A_0
-
DIS_CUTOFF_A_0
public static final KacoSunSpecModel.S64202 DIS_CUTOFF_A_0
-
CHA_MAX_V_0
public static final KacoSunSpecModel.S64202 CHA_MAX_V_0
-
CHA_MAX_A_0
public static final KacoSunSpecModel.S64202 CHA_MAX_A_0
-
CHA_CUTOFF_A_0
public static final KacoSunSpecModel.S64202 CHA_CUTOFF_A_0
-
RESERVED_0
public static final KacoSunSpecModel.S64202 RESERVED_0
-
EN_LIMIT_0
public static final KacoSunSpecModel.S64202 EN_LIMIT_0
-
-
Field Detail
-
impl
protected final SunSpecPoint.PointImpl impl
-
-
Method Detail
-
values
public static KacoSunSpecModel.S64202[] 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.S64202 c : KacoSunSpecModel.S64202.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.S64202 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
-
-