public static enum PathDecomposition.TestResult extends java.lang.Enum<PathDecomposition.TestResult>
Enum Constant and Description |
---|
EDGE_MISSING |
NODE_MISSING |
NOT_CONNECTED |
OK |
Modifier and Type | Method and Description |
---|---|
static PathDecomposition.TestResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PathDecomposition.TestResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathDecomposition.TestResult OK
public static final PathDecomposition.TestResult NOT_CONNECTED
public static final PathDecomposition.TestResult NODE_MISSING
public static final PathDecomposition.TestResult EDGE_MISSING
public static PathDecomposition.TestResult[] values()
for (PathDecomposition.TestResult c : PathDecomposition.TestResult.values()) System.out.println(c);
public static PathDecomposition.TestResult 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