Enum Class ControlMode

java.lang.Object
java.lang.Enum<ControlMode>
io.openems.edge.goodwe.common.enums.ControlMode
All Implemented Interfaces:
Serializable, Comparable<ControlMode>, Constable

public enum ControlMode extends Enum<ControlMode>
  • Enum Constant Details

    • INTERNAL

      public static final ControlMode INTERNAL
      Uses the internal 'AUTO' mode of the GoodWe inverter. Allows no remote control of Set-Points. Requires a GoodWe Smart Meter at the grid junction point.
    • SMART

      public static final ControlMode SMART
      Uses the internal 'AUTO' mode of the GoodWe inverter but smartly switches to other modes if required.Requires a GoodWe Smart Meter at the grid junction point.
    • REMOTE

      public static final ControlMode REMOTE
      Full control of the GoodWe inverter by OpenEMS. Slower than internal 'AUTO' mode, but does not require a GoodWe Smart Meter at the grid junction point.
  • Method Details

    • values

      public static ControlMode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ControlMode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null