public static enum StructuredGraph.AllowAssumptions extends Enum<StructuredGraph.AllowAssumptions>
Assumptions.Assumption
s can be made while processing a graph.Modifier and Type | Method and Description |
---|---|
static StructuredGraph.AllowAssumptions |
from(boolean flag) |
static StructuredGraph.AllowAssumptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StructuredGraph.AllowAssumptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructuredGraph.AllowAssumptions YES
public static final StructuredGraph.AllowAssumptions NO
public static StructuredGraph.AllowAssumptions[] values()
for (StructuredGraph.AllowAssumptions c : StructuredGraph.AllowAssumptions.values()) System.out.println(c);
public static StructuredGraph.AllowAssumptions valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static StructuredGraph.AllowAssumptions from(boolean flag)