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
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
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSystem data is provided by an arbitrary (usually normal, that is non-system data element). -
Method Summary
Modifier and TypeMethodDescriptiontoString()Returns the enum constant of this class with the specified name.static Dependency.SystemDataProvider[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ARBITRARY_DATA_ELEMENT
System data is provided by an arbitrary (usually normal, that is non-system data element).
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-
toString
- Overrides:
toStringin classEnum<Dependency.SystemDataProvider>
-