Class ModifyQuery

    • Constructor Detail

      • ModifyQuery

        ModifyQuery()
    • Method Detail

      • with

        public ModifyQuery with​(Iri iri)
        Define the graph that will be modified or matched against in the absence of more explicit graph definitions
        Parameters:
        iri - the IRI identifying the desired graph
        Returns:
        this modify query instance
      • with

        public ModifyQuery with​(IRI iri)
        Define the graph that will be modified or matched against in the absence of more explicit graph definitions
        Parameters:
        iri - the IRI identifying the desired graph
        Returns:
        this modify query instance
      • from

        public ModifyQuery from​(GraphName graphName)
        Specify the graph to delete triples from
        Parameters:
        graphName - the identifier of the graph
        Returns:
        this modify query instance
      • insert

        public ModifyQuery insert​(TriplePattern... triples)
        Specify triples to insert
        Parameters:
        triples - the triples to insert
        Returns:
        this modify query instance
      • into

        public ModifyQuery into​(GraphName graphName)
        Specify the graph to insert triples into
        Parameters:
        graphName - the identifier of the graph
        Returns:
        this modify query instance
      • using

        public ModifyQuery using​(Iri iri)
        Specify the graph used when evaluating the WHERE clause
        Parameters:
        iri - the IRI identifying the desired graph
        Returns:
        this modify query instance
      • using

        public ModifyQuery using​(IRI iri)
        Specify the graph used when evaluating the WHERE clause
        Parameters:
        iri - the IRI identifying the desired graph
        Returns:
        this modify query instance
      • usingNamed

        public ModifyQuery usingNamed​(Iri iri)
        Specify a named graph to use to when evaluating the WHERE clause
        Parameters:
        iri - the IRI identifying the desired graph
        Returns:
        this modify query instance
      • usingNamed

        public ModifyQuery usingNamed​(IRI iri)
        Specify a named graph to use to when evaluating the WHERE clause
        Parameters:
        iri - the IRI identifying the desired graph
        Returns:
        this modify query instance
      • where

        public ModifyQuery where​(GraphPattern... patterns)
        Add graph patterns to this query's query pattern
        Parameters:
        patterns - the patterns to add
        Returns:
        this modify query instance