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