Interface RDFDatasetAccessConnection

    • Method Detail

      • fetch

        Model fetch​(java.lang.String graphName)
        Fetch a named graph. This is SPARQL Graph Store Protocol HTTP GET or equivalent.
        Parameters:
        graphName - URI string for the graph name (null or "default" for the default graph)
        Returns:
        Model
      • fetch

        Model fetch()
        Fetch the default graph. This is SPARQL Graph Store Protocol HTTP GET or equivalent.
        Returns:
        Model
      • fetchDataset

        Dataset fetchDataset()
        Fetch the contents of the dataset
      • isClosed

        boolean isClosed()
        Test whether this connection is closed or not
      • close

        void close()
        Close this connection. Use with try-resource.
        Specified by:
        close in interface java.lang.AutoCloseable