Class SPARQLRequestImpl
java.lang.Object
se.liu.ida.hefquin.engine.federation.access.impl.req.SPARQLRequestImpl
- All Implemented Interfaces:
DataRetrievalRequest
,SPARQLRequest
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final ExpectedVariables
protected final SPARQLGraphPattern
protected final SPARQLQuery
-
Constructor Summary
ConstructorsConstructorDescriptionSPARQLRequestImpl
(SPARQLGraphPattern pattern) SPARQLRequestImpl
(SPARQLQuery query) -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns the query variables for which this data retrieval request aims to fetch data (if any), where some of these variables may be 'certain variables' whereas others are 'possible variables'.getQuery()
Returns the SPARQL query for which solutions should be requested.Returns the graph pattern for which solutions should be requested, or null if this request is based on an actual SPARQL query (to be accessed via the methodSPARQLRequest.getQuery()
.int
hashCode()
toString()
-
Field Details
-
pattern
-
query
-
expectedVars
-
-
Constructor Details
-
SPARQLRequestImpl
-
SPARQLRequestImpl
-
-
Method Details
-
equals
-
hashCode
public int hashCode() -
getQueryPattern
Description copied from interface:SPARQLRequest
Returns the graph pattern for which solutions should be requested, or null if this request is based on an actual SPARQL query (to be accessed via the methodSPARQLRequest.getQuery()
.- Specified by:
getQueryPattern
in interfaceSPARQLRequest
-
getQuery
Description copied from interface:SPARQLRequest
Returns the SPARQL query for which solutions should be requested.- Specified by:
getQuery
in interfaceSPARQLRequest
-
getExpectedVariables
Description copied from interface:DataRetrievalRequest
Returns the query variables for which this data retrieval request aims to fetch data (if any), where some of these variables may be 'certain variables' whereas others are 'possible variables'. For the distinction between these two types of variables, refer toExpectedVariables.getCertainVariables()
and to {@link ExpectedVariables#getPossibleVariables())}. For instance, if this request is about fetching triples that match a given triple pattern, then the variables of that triple pattern would be returned here as certain variables. Note that the method may also return null (which would be the case for types of data retrieval requests for which this method is not applicable in any reasonable way).- Specified by:
getExpectedVariables
in interfaceDataRetrievalRequest
-
toString
- Specified by:
toString
in interfaceDataRetrievalRequest
- Overrides:
toString
in classObject
-