Package org.apache.jena.riot.lang
Class CollectorStreamQuads
- java.lang.Object
-
- org.apache.jena.riot.lang.CollectorStreamBase<Quad>
-
- org.apache.jena.riot.lang.CollectorStreamQuads
-
- All Implemented Interfaces:
StreamRDF
public class CollectorStreamQuads extends CollectorStreamBase<Quad> implements StreamRDF
Collector stream for quads.- See Also:
CollectorStreamBase
-
-
Constructor Summary
Constructors Constructor Description CollectorStreamQuads()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Quad>getCollected()voidquad(Quad quad)Quad emittedvoidstart()Start processing-
Methods inherited from class org.apache.jena.riot.lang.CollectorStreamBase
base, finish, getBaseIri, getPrefixes, prefix, triple
-
-
-
-
Method Detail
-
start
public void start()
Description copied from interface:StreamRDFStart processing- Specified by:
startin interfaceStreamRDF- Overrides:
startin classCollectorStreamBase<Quad>
-
quad
public void quad(Quad quad)
Description copied from interface:StreamRDFQuad emitted- Specified by:
quadin interfaceStreamRDF- Overrides:
quadin classCollectorStreamBase<Quad>
-
getCollected
public java.util.List<Quad> getCollected()
- Specified by:
getCollectedin classCollectorStreamBase<Quad>- Returns:
- The collection received by this instance.
-
-