public static enum Dependency.SystemDataProvider extends java.lang.Enum<Dependency.SystemDataProvider>
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.| Enum Constant and Description |
|---|
ARBITRARY_DATA_ELEMENT
System data is provided by an arbitrary (usually normal, that is
non-system data element).
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static Dependency.SystemDataProvider |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Dependency.SystemDataProvider[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dependency.SystemDataProvider ARBITRARY_DATA_ELEMENT
public static Dependency.SystemDataProvider[] values()
for (Dependency.SystemDataProvider c : Dependency.SystemDataProvider.values()) System.out.println(c);
public static Dependency.SystemDataProvider valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<Dependency.SystemDataProvider>