Interface SPARQL2CypherTranslationResult
- All Known Implementing Classes:
 SPARQL2CypherTranslationResultImpl
public interface SPARQL2CypherTranslationResult
Objects of this type capture the output of the SPARQL-to-Cypher
 translation (as performed by a 
SPARQLStar2CypherTranslator).
 Such output consists of the resulting Cypher query and a mapping from
 each variable used in this Cypher query to the SPARQL variable that
 the Cypher variables corresponds to.- 
Method Summary
Modifier and TypeMethodDescriptionReturns the Cypher query produced by the translation process.Returns the mapping that maps each variable introduced in the Cypher query (seegetCypherQuery()) to the corresponding SPARQL variable in the SPARQL pattern that was translated. 
- 
Method Details
- 
getCypherQuery
CypherQuery getCypherQuery()Returns the Cypher query produced by the translation process. - 
getVariablesMapping
Returns the mapping that maps each variable introduced in the Cypher query (seegetCypherQuery()) to the corresponding SPARQL variable in the SPARQL pattern that was translated. 
 -