org.processmining.framework.models.hlprocess
Enum HighLevelProcess.Perspective

java.lang.Object
  extended by java.lang.Enum<HighLevelProcess.Perspective>
      extended by org.processmining.framework.models.hlprocess.HighLevelProcess.Perspective
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<HighLevelProcess.Perspective>
Enclosing interface:
HighLevelProcess

public static enum HighLevelProcess.Perspective
extends java.lang.Enum<HighLevelProcess.Perspective>

Class representing a perspective that may be covered by the HighLevelProcess A HighLevelProcess model may cover more than one perspective.


Enum Constant Summary
CASE_GEN_SCHEME
           
CHOICE_CONF
           
CHOICE_DATA
           
CHOICE_FREQ
           
CHOICE_PROB
           
DATA
           
ORGANIZATIONAL
           
TIMING_EXECTIME
           
TIMING_SOJTIME
           
TIMING_WAITTIME
           
 
Method Summary
static HighLevelProcess.Perspective valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static HighLevelProcess.Perspective[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ORGANIZATIONAL

public static final HighLevelProcess.Perspective ORGANIZATIONAL

TIMING_EXECTIME

public static final HighLevelProcess.Perspective TIMING_EXECTIME

TIMING_WAITTIME

public static final HighLevelProcess.Perspective TIMING_WAITTIME

CASE_GEN_SCHEME

public static final HighLevelProcess.Perspective CASE_GEN_SCHEME

TIMING_SOJTIME

public static final HighLevelProcess.Perspective TIMING_SOJTIME

DATA

public static final HighLevelProcess.Perspective DATA

CHOICE_DATA

public static final HighLevelProcess.Perspective CHOICE_DATA

CHOICE_PROB

public static final HighLevelProcess.Perspective CHOICE_PROB

CHOICE_FREQ

public static final HighLevelProcess.Perspective CHOICE_FREQ

CHOICE_CONF

public static final HighLevelProcess.Perspective CHOICE_CONF
Method Detail

values

public static final HighLevelProcess.Perspective[] 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(HighLevelProcess.Perspective c : HighLevelProcess.Perspective.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static HighLevelProcess.Perspective 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