Class SPARQLResultsSAXParser
java.lang.Object
org.eclipse.rdf4j.common.xml.SimpleSAXAdapter
org.eclipse.rdf4j.query.resultio.sparqlxml.SPARQLResultsSAXParser
- All Implemented Interfaces:
SimpleSAXListener
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionThe variable names that are specified in the header.private StringThe most recently parsed binding name.private MapBindingSetThe bound variables for the current result.private ValueThe most recently parsed value.private final QueryResultHandlerprivate final org.slf4j.Loggerprivate final Deque<SPARQLResultsSAXParser.TripleContainer> stack for handling nested RDF-star triplesprivate final ValueFactory -
Constructor Summary
ConstructorsConstructorDescriptionSPARQLResultsSAXParser(ValueFactory valueFactory, QueryResultHandler handler) -
Method Summary
Modifier and TypeMethodDescriptionvoidNotifies the listener that the parser has finished parsing.voidReports an end tag to the listener.voidNotifies the listener that the parser has started parsing.voidReports a start tag to the listener.
-
Field Details
-
logger
private final org.slf4j.Logger logger -
bindingNames
-
currentBindingName
The most recently parsed binding name. -
currentValue
The most recently parsed value. -
currentSolution
The bound variables for the current result. -
valueFactory
-
handler
-
tripleStack
stack for handling nested RDF-star triples
-
-
Constructor Details
-
SPARQLResultsSAXParser
-
-
Method Details
-
startDocument
Description copied from interface:SimpleSAXListenerNotifies the listener that the parser has started parsing.- Specified by:
startDocumentin interfaceSimpleSAXListener- Overrides:
startDocumentin classSimpleSAXAdapter- Throws:
SAXException
-
endDocument
Description copied from interface:SimpleSAXListenerNotifies the listener that the parser has finished parsing.- Specified by:
endDocumentin interfaceSimpleSAXListener- Overrides:
endDocumentin classSimpleSAXAdapter- Throws:
SAXException
-
startTag
Description copied from interface:SimpleSAXListenerReports a start tag to the listener. The method call reports the tag's name, the attributes that were found in the start tag and any text that was found after the start tag.- Specified by:
startTagin interfaceSimpleSAXListener- Overrides:
startTagin classSimpleSAXAdapter- Parameters:
tagName- The tag name.atts- A map containing key-value-pairs representing the attributes that were found in the start tag.text- The text immediately following the start tag, or an empty string if the start tag was followed by a nested start tag or if no text (other than whitespace) was found between start- and end tag.- Throws:
SAXException
-
endTag
Description copied from interface:SimpleSAXListenerReports an end tag to the listener.- Specified by:
endTagin interfaceSimpleSAXListener- Overrides:
endTagin classSimpleSAXAdapter- Parameters:
tagName- The tag name.- Throws:
SAXException
-