public enum TupleFunctionEvaluationMode extends Enum<TupleFunctionEvaluationMode>
Enum Constant and Description |
---|
NATIVE
Assumes the base SAIL supports an extended query algebra (e.g.
|
SERVICE
Uses the base SAIL along with an embedded SERVICE to perform query evaluation.
|
TRIPLE_SOURCE
Treats the base SAIL as a simple triple source and all the query evaluation is performed by this SAIL.
|
Modifier and Type | Method and Description |
---|---|
static TupleFunctionEvaluationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TupleFunctionEvaluationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TupleFunctionEvaluationMode SERVICE
TupleFunction
s. (Default).public static final TupleFunctionEvaluationMode NATIVE
TupleFunction
s) and use it to perform all
query evaluation.public static final TupleFunctionEvaluationMode TRIPLE_SOURCE
public static TupleFunctionEvaluationMode[] values()
for (TupleFunctionEvaluationMode c : TupleFunctionEvaluationMode.values()) System.out.println(c);
public static TupleFunctionEvaluationMode 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-2019 Eclipse Foundation. All Rights Reserved.