Class SeRQLQueryRenderer
- java.lang.Object
-
- org.eclipse.rdf4j.queryrender.serql.SeRQLQueryRenderer
-
- All Implemented Interfaces:
QueryRenderer
public class SeRQLQueryRenderer extends Object implements QueryRenderer
Implementation of the
QueryRenderer
interface which rendersParsedQuery
objects as strings in SeRQL syntax- Author:
- Michael Grove
-
-
Field Summary
Fields Modifier and Type Field Description static boolean
SERQL_ONE_X_COMPATIBILITY_MODE
-
Constructor Summary
Constructors Constructor Description SeRQLQueryRenderer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QueryLanguage
getLanguage()
Return the language this QueryRenderer will render queries in.String
render(ParsedQuery theQuery)
Render the query object to a string in the language supported by this renderer
-
-
-
Field Detail
-
SERQL_ONE_X_COMPATIBILITY_MODE
public static final boolean SERQL_ONE_X_COMPATIBILITY_MODE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getLanguage
public QueryLanguage getLanguage()
Description copied from interface:QueryRenderer
Return the language this QueryRenderer will render queries in.- Specified by:
getLanguage
in interfaceQueryRenderer
- Returns:
- the query language
-
render
public String render(ParsedQuery theQuery) throws Exception
Description copied from interface:QueryRenderer
Render the query object to a string in the language supported by this renderer- Specified by:
render
in interfaceQueryRenderer
- Parameters:
theQuery
- the query to render- Returns:
- the rendered query
- Throws:
Exception
- if there is an error while rendering
-
-