Enum EditorMenuBar.AnalyzeType
- java.lang.Object
-
- java.lang.Enum<EditorMenuBar.AnalyzeType>
-
- org.processmining.objectcentricconstraintchecking.algorithms.editor.EditorMenuBar.AnalyzeType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EditorMenuBar.AnalyzeType>
- Enclosing class:
- EditorMenuBar
public static enum EditorMenuBar.AnalyzeType extends java.lang.Enum<EditorMenuBar.AnalyzeType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EditorMenuBar.AnalyzeTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EditorMenuBar.AnalyzeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IS_CONNECTED
public static final EditorMenuBar.AnalyzeType IS_CONNECTED
-
IS_SIMPLE
public static final EditorMenuBar.AnalyzeType IS_SIMPLE
-
IS_CYCLIC_DIRECTED
public static final EditorMenuBar.AnalyzeType IS_CYCLIC_DIRECTED
-
IS_CYCLIC_UNDIRECTED
public static final EditorMenuBar.AnalyzeType IS_CYCLIC_UNDIRECTED
-
COMPLEMENTARY
public static final EditorMenuBar.AnalyzeType COMPLEMENTARY
-
REGULARITY
public static final EditorMenuBar.AnalyzeType REGULARITY
-
COMPONENTS
public static final EditorMenuBar.AnalyzeType COMPONENTS
-
MAKE_CONNECTED
public static final EditorMenuBar.AnalyzeType MAKE_CONNECTED
-
MAKE_SIMPLE
public static final EditorMenuBar.AnalyzeType MAKE_SIMPLE
-
IS_TREE
public static final EditorMenuBar.AnalyzeType IS_TREE
-
ONE_SPANNING_TREE
public static final EditorMenuBar.AnalyzeType ONE_SPANNING_TREE
-
IS_DIRECTED
public static final EditorMenuBar.AnalyzeType IS_DIRECTED
-
GET_CUT_VERTEXES
public static final EditorMenuBar.AnalyzeType GET_CUT_VERTEXES
-
GET_CUT_EDGES
public static final EditorMenuBar.AnalyzeType GET_CUT_EDGES
-
GET_SOURCES
public static final EditorMenuBar.AnalyzeType GET_SOURCES
-
GET_SINKS
public static final EditorMenuBar.AnalyzeType GET_SINKS
-
PLANARITY
public static final EditorMenuBar.AnalyzeType PLANARITY
-
IS_BICONNECTED
public static final EditorMenuBar.AnalyzeType IS_BICONNECTED
-
GET_BICONNECTED
public static final EditorMenuBar.AnalyzeType GET_BICONNECTED
-
SPANNING_TREE
public static final EditorMenuBar.AnalyzeType SPANNING_TREE
-
FLOYD_ROY_WARSHALL
public static final EditorMenuBar.AnalyzeType FLOYD_ROY_WARSHALL
-
-
Method Detail
-
values
public static EditorMenuBar.AnalyzeType[] 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 (EditorMenuBar.AnalyzeType c : EditorMenuBar.AnalyzeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EditorMenuBar.AnalyzeType 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
-
-