Enum Class StartStopConfig

java.lang.Object
java.lang.Enum<StartStopConfig>
io.openems.edge.common.startstop.StartStopConfig
All Implemented Interfaces:
Serializable, Comparable<StartStopConfig>, Constable

public enum StartStopConfig extends Enum<StartStopConfig>
Every OpenEMS Component that implements StartStoppable is required to have a configuration property "startStop" of this type that overrides the logic of the StartStoppable.setStartStop(StartStop) method:.
        @AttributeDefinition(name = "Start/stop behaviour?", description = "Should this Component be forced to start or stop?")
        StartStopConfig startStop() default StartStopConfig.AUTO;
 
  • Enum Constant Details

  • Method Details

    • values

      public static StartStopConfig[] 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 StartStopConfig 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