Enum Class RiskLevel

java.lang.Object
java.lang.Enum<RiskLevel>
io.openems.edge.controller.ess.timeofusetariff.RiskLevel
All Implemented Interfaces:
Serializable, Comparable<RiskLevel>, Constable

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

    • LOW

      public static final RiskLevel LOW
      Less dependent on predictions. The storage system behavior is less likely to deviate from the predicted behavior.
    • MEDIUM

      public static final RiskLevel MEDIUM
      Moderately dependent on predictions. The storage system behavior may occasionally deviate from the predicted behavior but generally stays within expected parameters.
    • HIGH

      public static final RiskLevel HIGH
      Heavily reliant on predictions. The storage system behavior is expected to closely align with the predicted behavior, but occasional over-consumption during peak pricing hours or under-consumption for self-sufficiency may still occur.
  • Method Details

    • values

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