public static enum TreeFitnessInfo.Dimension extends java.lang.Enum<TreeFitnessInfo.Dimension>
Enum Constant and Description |
---|
FITNESS
FITNESS: How well the process tree is able to replay the event log
|
GENERALIZATION
GENERALIZATION: How likely the process tree is able to capture a new
event log obtained from the same originating process model (e.g.
|
META
META: a metric that wraps around metrics of ANY other dimension.
|
OTHER
OTHER: Other dimension that says something about the process tree,
possibly in relationship to the event log.
|
PRECISION
PRECISION: How precise the process tree is w.r.t.
|
SIMPLICITY
SIMPLICITY: How simple the process tree is, for instance for the user
to understand.
|
Modifier and Type | Method and Description |
---|---|
static TreeFitnessInfo.Dimension |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TreeFitnessInfo.Dimension[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TreeFitnessInfo.Dimension META
public static final TreeFitnessInfo.Dimension FITNESS
public static final TreeFitnessInfo.Dimension PRECISION
public static final TreeFitnessInfo.Dimension GENERALIZATION
public static final TreeFitnessInfo.Dimension SIMPLICITY
public static final TreeFitnessInfo.Dimension OTHER
public static TreeFitnessInfo.Dimension[] values()
for (TreeFitnessInfo.Dimension c : TreeFitnessInfo.Dimension.values()) System.out.println(c);
public static TreeFitnessInfo.Dimension 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 null