Enum PDependencyDataAware.EnumDataDependency
- java.lang.Object
-
- java.lang.Enum<PDependencyDataAware.EnumDataDependency>
-
- org.processmining.partialorder.models.dependency.PDependencyDataAware.EnumDataDependency
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PDependencyDataAware.EnumDataDependency>
- Enclosing class:
- PDependencyDataAware
public static enum PDependencyDataAware.EnumDataDependency extends java.lang.Enum<PDependencyDataAware.EnumDataDependency>
EnumDataDependency: Eight cases of different data dependencies e.g. II_SameValue : predecessor has input attribute which the successor also has, and both values have the same value
-
-
Enum Constant Summary
Enum Constants Enum Constant Description II_DiffValueII_SameValueIO_DiffValueIO_SameValueOI_DiffValueOI_SameValueOO_DiffValueOO_SameValue
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PDependencyDataAware.EnumDataDependencyvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PDependencyDataAware.EnumDataDependency[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
II_SameValue
public static final PDependencyDataAware.EnumDataDependency II_SameValue
-
II_DiffValue
public static final PDependencyDataAware.EnumDataDependency II_DiffValue
-
IO_SameValue
public static final PDependencyDataAware.EnumDataDependency IO_SameValue
-
IO_DiffValue
public static final PDependencyDataAware.EnumDataDependency IO_DiffValue
-
OI_SameValue
public static final PDependencyDataAware.EnumDataDependency OI_SameValue
-
OI_DiffValue
public static final PDependencyDataAware.EnumDataDependency OI_DiffValue
-
OO_SameValue
public static final PDependencyDataAware.EnumDataDependency OO_SameValue
-
OO_DiffValue
public static final PDependencyDataAware.EnumDataDependency OO_DiffValue
-
-
Method Detail
-
values
public static PDependencyDataAware.EnumDataDependency[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PDependencyDataAware.EnumDataDependency c : PDependencyDataAware.EnumDataDependency.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PDependencyDataAware.EnumDataDependency valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-