Enum DefaultSunSpecModel.S125
- java.lang.Object
-
- java.lang.Enum<DefaultSunSpecModel.S125>
-
- io.openems.edge.bridge.modbus.sunspec.DefaultSunSpecModel.S125
-
- All Implemented Interfaces:
SunSpecPoint
,java.io.Serializable
,java.lang.Comparable<DefaultSunSpecModel.S125>
- Enclosing class:
- DefaultSunSpecModel
public static enum DefaultSunSpecModel.S125 extends java.lang.Enum<DefaultSunSpecModel.S125> implements SunSpecPoint
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface io.openems.edge.bridge.modbus.sunspec.SunSpecPoint
SunSpecPoint.PointCategory, SunSpecPoint.PointImpl, SunSpecPoint.PointType
-
-
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.S125
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DefaultSunSpecModel.S125[]
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
-
MOD_ENA
public static final DefaultSunSpecModel.S125 MOD_ENA
-
SIG_TYPE
public static final DefaultSunSpecModel.S125 SIG_TYPE
-
SIG
public static final DefaultSunSpecModel.S125 SIG
-
WIN_TMS
public static final DefaultSunSpecModel.S125 WIN_TMS
-
RVT_TMS
public static final DefaultSunSpecModel.S125 RVT_TMS
-
RMP_TMS
public static final DefaultSunSpecModel.S125 RMP_TMS
-
SIG_S_F
public static final DefaultSunSpecModel.S125 SIG_S_F
-
PAD
public static final DefaultSunSpecModel.S125 PAD
-
-
Field Detail
-
impl
protected final SunSpecPoint.PointImpl impl
-
-
Method Detail
-
values
public static DefaultSunSpecModel.S125[] 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.S125 c : DefaultSunSpecModel.S125.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.S125 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
-
-