public static enum NonLatticeCounterExample.GraphExampleType extends java.lang.Enum<NonLatticeCounterExample.GraphExampleType> implements NonLatticeCounterExample.ExampleType
Enum Constant and Description |
---|
GRAPHCYCLE
Represents a counterexample where the graph has a cycle.
|
GREATESTLOWER
Represents a counterexample where some nodes have no greatest lower bound.
|
LEASTUPPER
Represents a counterexample where some nodes have no least upper bound.
|
Modifier and Type | Method and Description |
---|---|
static NonLatticeCounterExample.GraphExampleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NonLatticeCounterExample.GraphExampleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NonLatticeCounterExample.GraphExampleType GREATESTLOWER
public static final NonLatticeCounterExample.GraphExampleType LEASTUPPER
public static final NonLatticeCounterExample.GraphExampleType GRAPHCYCLE
public static NonLatticeCounterExample.GraphExampleType[] values()
for (NonLatticeCounterExample.GraphExampleType c : NonLatticeCounterExample.GraphExampleType.values()) System.out.println(c);
public static NonLatticeCounterExample.GraphExampleType 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