Package com.stardog.stark.query
Interface SelectQueryResultHandler
-
- All Superinterfaces:
QueryResultHandler<BindingSet>
- All Known Subinterfaces:
PathQueryResultWriter
,SelectQueryResultWriter
- All Known Implementing Classes:
AbstractDataExporterQueryResultWriter
,BinarySelectQueryResultWriter
,HTMLQueryResultWriter
,SPARQLCSVResultWriter
,SPARQLJSONSelectResultWriter
,SPARQLTSVResultWriter
,SPARQLXMLSelectResultWriter
,TextPathQueryResultWriter
,TextTablePathQueryResultWriter
,TextTableQueryResultWriter
public interface SelectQueryResultHandler extends QueryResultHandler<BindingSet>
- Since:
- 1.0
- Version:
- 1.0
- Author:
- Michael Grove
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
variables(java.util.List<java.lang.String> theVars)
The variables in the projection of the query-
Methods inherited from interface com.stardog.stark.query.QueryResultHandler
end, handle, links, start
-
-
-
-
Method Detail
-
variables
void variables(@Nonnull java.util.List<java.lang.String> theVars)
The variables in the projection of the query- Parameters:
theVars
- the variables- See Also:
SelectQueryResult.variables()
-
-