Enum DefaultSunSpecModel.S128
- java.lang.Object
-
- java.lang.Enum<DefaultSunSpecModel.S128>
-
- io.openems.edge.bridge.modbus.sunspec.DefaultSunSpecModel.S128
-
- All Implemented Interfaces:
SunSpecPoint
,java.io.Serializable
,java.lang.Comparable<DefaultSunSpecModel.S128>
- Enclosing class:
- DefaultSunSpecModel
public static enum DefaultSunSpecModel.S128 extends java.lang.Enum<DefaultSunSpecModel.S128> implements SunSpecPoint
-
-
Nested Class Summary
-
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 AR_GRA_MOD
AR_GRA_S_F
AR_GRA_SAG
AR_GRA_SWELL
BLK_ZN_TMMS
BLK_ZN_V
DB_V_MAX
DB_V_MIN
FIL_TMS
HOLD_TMMS
HYS_BLK_ZN_V
MOD_ENA
PAD
V_REF_PCT_S_F
-
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 DefaultSunSpecModel.S128
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DefaultSunSpecModel.S128[]
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
-
AR_GRA_MOD
public static final DefaultSunSpecModel.S128 AR_GRA_MOD
-
AR_GRA_SAG
public static final DefaultSunSpecModel.S128 AR_GRA_SAG
-
AR_GRA_SWELL
public static final DefaultSunSpecModel.S128 AR_GRA_SWELL
-
MOD_ENA
public static final DefaultSunSpecModel.S128 MOD_ENA
-
FIL_TMS
public static final DefaultSunSpecModel.S128 FIL_TMS
-
DB_V_MIN
public static final DefaultSunSpecModel.S128 DB_V_MIN
-
DB_V_MAX
public static final DefaultSunSpecModel.S128 DB_V_MAX
-
BLK_ZN_V
public static final DefaultSunSpecModel.S128 BLK_ZN_V
-
HYS_BLK_ZN_V
public static final DefaultSunSpecModel.S128 HYS_BLK_ZN_V
-
BLK_ZN_TMMS
public static final DefaultSunSpecModel.S128 BLK_ZN_TMMS
-
HOLD_TMMS
public static final DefaultSunSpecModel.S128 HOLD_TMMS
-
AR_GRA_S_F
public static final DefaultSunSpecModel.S128 AR_GRA_S_F
-
V_REF_PCT_S_F
public static final DefaultSunSpecModel.S128 V_REF_PCT_S_F
-
PAD
public static final DefaultSunSpecModel.S128 PAD
-
-
Field Detail
-
impl
protected final SunSpecPoint.PointImpl impl
-
-
Method Detail
-
values
public static DefaultSunSpecModel.S128[] 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 (DefaultSunSpecModel.S128 c : DefaultSunSpecModel.S128.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DefaultSunSpecModel.S128 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
-
-