Enum FeneconHome.Property
- java.lang.Object
-
- java.lang.Enum<FeneconHome.Property>
-
- io.openems.edge.app.integratedsystem.FeneconHome.Property
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FeneconHome.Property>
- Enclosing class:
- FeneconHome
public static enum FeneconHome.Property extends java.lang.Enum<FeneconHome.Property>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FeneconHome.Property
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FeneconHome.Property[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SAFETY_COUNTRY
public static final FeneconHome.Property SAFETY_COUNTRY
-
MAX_FEED_IN_POWER
public static final FeneconHome.Property MAX_FEED_IN_POWER
-
FEED_IN_SETTING
public static final FeneconHome.Property FEED_IN_SETTING
-
RIPPLE_CONTROL_RECEIVER_ACTIV
public static final FeneconHome.Property RIPPLE_CONTROL_RECEIVER_ACTIV
-
HAS_AC_METER
public static final FeneconHome.Property HAS_AC_METER
-
HAS_DC_PV1
public static final FeneconHome.Property HAS_DC_PV1
-
DC_PV1_ALIAS
public static final FeneconHome.Property DC_PV1_ALIAS
-
HAS_DC_PV2
public static final FeneconHome.Property HAS_DC_PV2
-
DC_PV2_ALIAS
public static final FeneconHome.Property DC_PV2_ALIAS
-
HAS_EMERGENCY_RESERVE
public static final FeneconHome.Property HAS_EMERGENCY_RESERVE
-
EMERGENCY_RESERVE_ENABLED
public static final FeneconHome.Property EMERGENCY_RESERVE_ENABLED
-
EMERGENCY_RESERVE_SOC
public static final FeneconHome.Property EMERGENCY_RESERVE_SOC
-
SHADOW_MANAGEMENT_DISABLED
public static final FeneconHome.Property SHADOW_MANAGEMENT_DISABLED
-
-
Method Detail
-
values
public static FeneconHome.Property[] 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 (FeneconHome.Property c : FeneconHome.Property.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FeneconHome.Property 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
-
-