Package io.openems.edge.ess.api
Enum AsymmetricEss.ChannelId
- java.lang.Object
-
- java.lang.Enum<AsymmetricEss.ChannelId>
-
- io.openems.edge.ess.api.AsymmetricEss.ChannelId
-
- All Implemented Interfaces:
ChannelId
,java.io.Serializable
,java.lang.Comparable<AsymmetricEss.ChannelId>
- Enclosing interface:
- AsymmetricEss
public static enum AsymmetricEss.ChannelId extends java.lang.Enum<AsymmetricEss.ChannelId> implements ChannelId
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVE_POWER_L1
Active Power L1.ACTIVE_POWER_L2
Active Power L2.ACTIVE_POWER_L3
Active Power L3.REACTIVE_POWER_L1
Reactive Power L1.REACTIVE_POWER_L2
Reactive Power L2.REACTIVE_POWER_L3
Reactive Power L3.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Doc
doc()
Gets the Channel Doc for this ChannelId.static AsymmetricEss.ChannelId
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AsymmetricEss.ChannelId[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIVE_POWER_L1
public static final AsymmetricEss.ChannelId ACTIVE_POWER_L1
Active Power L1.- Interface: Ess Asymmetric
- Type: Integer
- Unit: W
- Range: negative values for Charge; positive for Discharge
-
ACTIVE_POWER_L2
public static final AsymmetricEss.ChannelId ACTIVE_POWER_L2
Active Power L2.- Interface: Ess Asymmetric
- Type: Integer
- Unit: W
- Range: negative values for Charge; positive for Discharge
-
ACTIVE_POWER_L3
public static final AsymmetricEss.ChannelId ACTIVE_POWER_L3
Active Power L3.- Interface: Ess Asymmetric
- Type: Integer
- Unit: W
- Range: negative values for Charge; positive for Discharge
-
REACTIVE_POWER_L1
public static final AsymmetricEss.ChannelId REACTIVE_POWER_L1
Reactive Power L1.- Interface: Ess Asymmetric
- Type: Integer
- Unit: var
- Range: negative values for Charge; positive for Discharge
-
REACTIVE_POWER_L2
public static final AsymmetricEss.ChannelId REACTIVE_POWER_L2
Reactive Power L2.- Interface: Ess Asymmetric
- Type: Integer
- Unit: var
- Range: negative values for Charge; positive for Discharge
-
REACTIVE_POWER_L3
public static final AsymmetricEss.ChannelId REACTIVE_POWER_L3
Reactive Power L3.- Interface: Ess Asymmetric
- Type: Integer
- Unit: var
- Range: negative values for Charge; positive for Discharge
-
-
Method Detail
-
values
public static AsymmetricEss.ChannelId[] 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 (AsymmetricEss.ChannelId c : AsymmetricEss.ChannelId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AsymmetricEss.ChannelId 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
-
-