Class TransactionReader
- java.lang.Object
-
- org.eclipse.rdf4j.http.protocol.transaction.TransactionReader
-
public class TransactionReader extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description TransactionReader()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Collection<TransactionOperation>
parse(java.io.InputStream in)
parse the transaction from the serializationjava.util.Collection<TransactionOperation>
parse(java.io.Reader in)
parse the transaction from the serialization
-
-
-
Method Detail
-
parse
public java.util.Collection<TransactionOperation> parse(java.io.InputStream in) throws org.xml.sax.SAXException, java.io.IOException
parse the transaction from the serialization- Throws:
org.xml.sax.SAXException
- If the SimpleSAXParser was unable to create an XMLReader or if the XML is faulty.java.io.IOException
- If IO problems during parsing.
-
parse
public java.util.Collection<TransactionOperation> parse(java.io.Reader in) throws org.xml.sax.SAXException, java.io.IOException
parse the transaction from the serialization- Throws:
org.xml.sax.SAXException
- If the SimpleSAXParser was unable to create an XMLReader or if the XML is faulty.java.io.IOException
- If IO problems during parsing.
-
-