Enum Class Dependency.SystemDataProvider

java.lang.Object
java.lang.Enum<Dependency.SystemDataProvider>
de.aristaflow.adept2.model.processmodel.systemdata.Dependency.SystemDataProvider
All Implemented Interfaces:
Serializable, Comparable<Dependency.SystemDataProvider>, java.lang.constant.Constable
Enclosing class:
Dependency

public static enum Dependency.SystemDataProvider extends Enum<Dependency.SystemDataProvider>
This enumeration provides system data provider that "extend" SystemDataProducer, that is, both provide system data (for instance process relevant timestamps, agent IDs,...) but while system data producer represent methods from the process model, system data provider represent other data sources, for instance arbitrary data elements. Such data elements may receive their value from an application via the normal data flow. Therefore such data elements are no system data elements, although the name "system data provider" might suggest this.
Author:
Ulrich Kreher
  • Enum Constant Details

    • ARBITRARY_DATA_ELEMENT

      public static final Dependency.SystemDataProvider ARBITRARY_DATA_ELEMENT
      System data is provided by an arbitrary (usually normal, that is non-system data element).
  • Method Details

    • values

      public static Dependency.SystemDataProvider[] 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 Dependency.SystemDataProvider 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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Dependency.SystemDataProvider>