Enum PartialVisualType
- java.lang.Object
-
- java.lang.Enum<PartialVisualType>
-
- org.processmining.partialorder.plugins.vis.PartialVisualType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PartialVisualType>
public enum PartialVisualType extends java.lang.Enum<PartialVisualType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALIGNMENT_MINIMALAS_ISMAXIMAL_CLOSUREMINIMAL_REDUTIONNO_PARALLEL_MINIMAL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PartialVisualType[]toComparableGraphVisualType()static PartialVisualType[]toPAlignmentVisualTypes()static PartialVisualType[]toPTraceVisualTypes()static PartialVisualTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PartialVisualType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALIGNMENT_MINIMAL
public static final PartialVisualType ALIGNMENT_MINIMAL
-
NO_PARALLEL_MINIMAL
public static final PartialVisualType NO_PARALLEL_MINIMAL
-
MINIMAL_REDUTION
public static final PartialVisualType MINIMAL_REDUTION
-
AS_IS
public static final PartialVisualType AS_IS
-
MAXIMAL_CLOSURE
public static final PartialVisualType MAXIMAL_CLOSURE
-
-
Method Detail
-
values
public static PartialVisualType[] 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 (PartialVisualType c : PartialVisualType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PartialVisualType 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
-
toPTraceVisualTypes
public static PartialVisualType[] toPTraceVisualTypes()
-
toPAlignmentVisualTypes
public static PartialVisualType[] toPAlignmentVisualTypes()
-
toComparableGraphVisualType
public static PartialVisualType[] toComparableGraphVisualType()
-
-