org.processmining.analysis.mergesimmodels
Enum TimingTabUI.PerspectiveToShow
java.lang.Object
java.lang.Enum<TimingTabUI.PerspectiveToShow>
org.processmining.analysis.mergesimmodels.TimingTabUI.PerspectiveToShow
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<TimingTabUI.PerspectiveToShow>
- Enclosing class:
- TimingTabUI
public static enum TimingTabUI.PerspectiveToShow
- extends java.lang.Enum<TimingTabUI.PerspectiveToShow>
enumeration type for the perspectives that can be shown
- Author:
- rmans
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
EXECTIME
public static final TimingTabUI.PerspectiveToShow EXECTIME
WAITTIME
public static final TimingTabUI.PerspectiveToShow WAITTIME
SOJTIME
public static final TimingTabUI.PerspectiveToShow SOJTIME
CASEGENSCHEME
public static final TimingTabUI.PerspectiveToShow CASEGENSCHEME
values
public static final TimingTabUI.PerspectiveToShow[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(TimingTabUI.PerspectiveToShow c : TimingTabUI.PerspectiveToShow.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static TimingTabUI.PerspectiveToShow 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 name
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Enum<TimingTabUI.PerspectiveToShow>