Enum DefaultSunSpecModel.S18
- java.lang.Object
-
- java.lang.Enum<DefaultSunSpecModel.S18>
-
- io.openems.edge.bridge.modbus.sunspec.DefaultSunSpecModel.S18
-
- All Implemented Interfaces:
SunSpecPoint
,java.io.Serializable
,java.lang.Comparable<DefaultSunSpecModel.S18>
- Enclosing class:
- DefaultSunSpecModel
public static enum DefaultSunSpecModel.S18 extends java.lang.Enum<DefaultSunSpecModel.S18> 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.S18
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DefaultSunSpecModel.S18[]
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
-
NAM
public static final DefaultSunSpecModel.S18 NAM
-
IMEI
public static final DefaultSunSpecModel.S18 IMEI
-
APN
public static final DefaultSunSpecModel.S18 APN
-
NUM
public static final DefaultSunSpecModel.S18 NUM
-
PIN
public static final DefaultSunSpecModel.S18 PIN
-
-
Field Detail
-
impl
protected final SunSpecPoint.PointImpl impl
-
-
Method Detail
-
values
public static DefaultSunSpecModel.S18[] 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.S18 c : DefaultSunSpecModel.S18.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.S18 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
-
-