Package org.processmining.specpp.util
Enum PathTools.OutputFileType
- java.lang.Object
-
- java.lang.Enum<PathTools.OutputFileType>
-
- org.processmining.specpp.util.PathTools.OutputFileType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PathTools.OutputFileType>
- Enclosing class:
- PathTools
public static enum PathTools.OutputFileType extends java.lang.Enum<PathTools.OutputFileType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHARTCSV_EXPORTGRAPHMAIN_LOGMISC_EXPORTSUB_LOG
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PathTools.OutputFileTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PathTools.OutputFileType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MAIN_LOG
public static final PathTools.OutputFileType MAIN_LOG
-
SUB_LOG
public static final PathTools.OutputFileType SUB_LOG
-
CHART
public static final PathTools.OutputFileType CHART
-
GRAPH
public static final PathTools.OutputFileType GRAPH
-
MISC_EXPORT
public static final PathTools.OutputFileType MISC_EXPORT
-
CSV_EXPORT
public static final PathTools.OutputFileType CSV_EXPORT
-
-
Method Detail
-
values
public static PathTools.OutputFileType[] 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 (PathTools.OutputFileType c : PathTools.OutputFileType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PathTools.OutputFileType 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
-
-