public enum CompilationLevel extends Enum<CompilationLevel>
| Enum Constant and Description |
|---|
FULL
The compilation level used when the graph is compiled using
LogicalGraph.compile(). |
VALIDATE
The compilation level used when the graph is compiled using
LogicalGraph.validate(). |
| Modifier and Type | Method and Description |
|---|---|
static CompilationLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompilationLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompilationLevel VALIDATE
LogicalGraph.validate().
In this case, operators know the resulting graph will not be executed and thus
can skip certain expensive operations.public static final CompilationLevel FULL
LogicalGraph.compile().
In this case, the resulting graph will be executed.public static CompilationLevel[] values()
for (CompilationLevel c : CompilationLevel.values()) System.out.println(c);
public static CompilationLevel 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 nullCopyright © 2015 Actian Corporation. All Rights Reserved.