public enum EvaluationModel extends Enum<EvaluationModel>
EXACT for edges
from single-statement analysis; OVER_APPROXIMATE for edges
produced by flow-insensitive procedural composition.
Internal API: not part of the public gsqlparser surface.
| Enum Constant and Description |
|---|
EXACT |
OVER_APPROXIMATE |
| Modifier and Type | Method and Description |
|---|---|
static EvaluationModel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EvaluationModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EvaluationModel EXACT
public static final EvaluationModel OVER_APPROXIMATE
public static EvaluationModel[] values()
for (EvaluationModel c : EvaluationModel.values()) System.out.println(c);
public static EvaluationModel 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 null