Class StatementCollector

  • All Implemented Interfaces:
    RDFHandler

    public class StatementCollector
    extends ContextStatementCollector
    A RDFHandler that can be used to collect reported statements in collections.
    • Constructor Summary

      Constructors 
      Constructor Description
      StatementCollector()
      Creates a new StatementCollector that uses a new ArrayList to store the reported statements and a new LinkedHashMap to store the reported namespaces.
      StatementCollector​(java.util.Collection<Statement> statements)
      Creates a new StatementCollector that stores reported statements in the supplied collection and that uses a new LinkedHashMap to store the reported namespaces.
      StatementCollector​(java.util.Collection<Statement> statements, java.util.Map<java.lang.String,​java.lang.String> namespaces)
      Creates a new StatementCollector that stores reported statements and namespaces in the supplied containers.
    • Constructor Detail

      • StatementCollector

        public StatementCollector()
        Creates a new StatementCollector that uses a new ArrayList to store the reported statements and a new LinkedHashMap to store the reported namespaces.
      • StatementCollector

        public StatementCollector​(java.util.Collection<Statement> statements)
        Creates a new StatementCollector that stores reported statements in the supplied collection and that uses a new LinkedHashMap to store the reported namespaces.
      • StatementCollector

        public StatementCollector​(java.util.Collection<Statement> statements,
                                  java.util.Map<java.lang.String,​java.lang.String> namespaces)
        Creates a new StatementCollector that stores reported statements and namespaces in the supplied containers.