Class Sparql
- java.lang.Object
-
- org.eclipse.rdf4j.console.command.ConsoleCommand
-
- org.eclipse.rdf4j.console.command.QueryEvaluator
-
- org.eclipse.rdf4j.console.command.Sparql
-
public class Sparql extends QueryEvaluator
SPARQL query command- Author:
- Bart Hanssens
-
-
Field Summary
-
Fields inherited from class org.eclipse.rdf4j.console.command.ConsoleCommand
LOGGER
-
-
Constructor Summary
Constructors Constructor Description Sparql(TupleAndGraphQueryEvaluator evaluator)
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
addQueryPrefixes(StringBuffer result, Collection<Namespace> namespaces)
Add namespace prefixes to queryString
getHelpLong()
Get long descriptionString
getHelpShort()
Get short description, small enough to fit on one console rowString
getName()
Get the name of the commandprotected boolean
hasQueryPrefixes(String qry)
Check if query string already contains query prefixes-
Methods inherited from class org.eclipse.rdf4j.console.command.QueryEvaluator
executeQuery, usesSettings
-
Methods inherited from class org.eclipse.rdf4j.console.command.ConsoleCommand
askProceed, execute, getConsoleIO, getConsoleSettings, getConsoleState, write, writeError, writeError, writeInfo, writeln, writeUnopenedError
-
-
-
-
Constructor Detail
-
Sparql
public Sparql(TupleAndGraphQueryEvaluator evaluator)
Constructor- Parameters:
evaluator
-
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:Help
Get the name of the command- Returns:
- string
-
getHelpShort
public String getHelpShort()
Description copied from class:ConsoleCommand
Get short description, small enough to fit on one console row- Specified by:
getHelpShort
in interfaceHelp
- Overrides:
getHelpShort
in classConsoleCommand
- Returns:
- help string
-
getHelpLong
public String getHelpLong()
Description copied from class:ConsoleCommand
Get long description- Specified by:
getHelpLong
in interfaceHelp
- Overrides:
getHelpLong
in classConsoleCommand
- Returns:
- string, can be multiple lines
-
hasQueryPrefixes
protected boolean hasQueryPrefixes(String qry)
Description copied from class:QueryEvaluator
Check if query string already contains query prefixes- Specified by:
hasQueryPrefixes
in classQueryEvaluator
- Parameters:
qry
- query string- Returns:
- true if namespaces are already used
-
addQueryPrefixes
protected void addQueryPrefixes(StringBuffer result, Collection<Namespace> namespaces)
Description copied from class:QueryEvaluator
Add namespace prefixes to query- Specified by:
addQueryPrefixes
in classQueryEvaluator
namespaces
- collection of known namespaces
-
-