public static enum SparqlDLExecutionFactory.QueryEngineType extends Enum<SparqlDLExecutionFactory.QueryEngineType>
| Enum Constant and Description |
|---|
ARQ
This is the standard ARQ query engine where all the query answering
bits are handled by ARQ and Jena and the underlying Pellet model is
queried with single triple patterns.
|
MIXED
The mixed query engine uses ARQ to handle SPARQL algebra and the
Pellet query engine is used to answer Basic Graph Patterns (BGPs).
|
PELLET
This is the specialized Pellet query engine that will answer
SPARQL-DL queries.
|
| Modifier and Type | Method and Description |
|---|---|
static SparqlDLExecutionFactory.QueryEngineType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SparqlDLExecutionFactory.QueryEngineType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SparqlDLExecutionFactory.QueryEngineType ARQ
public static final SparqlDLExecutionFactory.QueryEngineType MIXED
public static final SparqlDLExecutionFactory.QueryEngineType PELLET
public static SparqlDLExecutionFactory.QueryEngineType[] values()
for (SparqlDLExecutionFactory.QueryEngineType c : SparqlDLExecutionFactory.QueryEngineType.values()) System.out.println(c);
public static SparqlDLExecutionFactory.QueryEngineType 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 © 2019. All rights reserved.