Enum Class OpenemsAppStatus

java.lang.Object
java.lang.Enum<OpenemsAppStatus>
io.openems.edge.core.appmanager.validator.OpenemsAppStatus
All Implemented Interfaces:
Serializable, Comparable<OpenemsAppStatus>, Constable

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

    • INCOMPATIBLE

      public static final OpenemsAppStatus INCOMPATIBLE
      Apps which are not compatible with the system. e. g. not a Home
    • COMPATIBLE

      public static final OpenemsAppStatus COMPATIBLE
      Apps which are compatible but can not be installed. e. g. not enough relays available
    • INSTALLABLE

      public static final OpenemsAppStatus INSTALLABLE
      Apps which can be installed.
  • Method Details

    • values

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