Enum Class AasContributor.Kind

java.lang.Object
java.lang.Enum<AasContributor.Kind>
de.iip_ecosphere.platform.support.iip_aas.AasContributor.Kind
All Implemented Interfaces:
Serializable, Comparable<AasContributor.Kind>, Constable
Enclosing interface:
AasContributor

public static enum AasContributor.Kind extends Enum<AasContributor.Kind>
The kind of AAS being built.
Author:
Holger Eichelberger, SSE
  • Enum Constant Details

    • PASSIVE

      public static final AasContributor.Kind PASSIVE
      A passive AAS with static information only.
    • DYNAMIC

      public static final AasContributor.Kind DYNAMIC
      A dynamic AAS with static and dynamic information, but no remote operations/properties. The structure of the AAS may change dynamically.
    • ACTIVE

      public static final AasContributor.Kind ACTIVE
      An active AAS which also provides remote operations/properties.
  • Constructor Details

    • Kind

      private Kind()
  • Method Details

    • values

      public static AasContributor.Kind[] 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 AasContributor.Kind 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