Class SPARQLMinusIteration

    • Constructor Detail

      • SPARQLMinusIteration

        public SPARQLMinusIteration​(CloseableIteration<BindingSet> leftArg,
                                    CloseableIteration<BindingSet> rightArg)
        Deprecated.
        Creates a new MinusIteration that returns the results of the left argument minus the results of the right argument. By default, duplicates are not filtered from the results.
        Parameters:
        leftArg - An Iteration containing the main set of elements.
        rightArg - An Iteration containing the set of elements that should be filtered from the main set.
    • Method Detail

      • accept

        protected boolean accept​(BindingSet bindingSet)
        Deprecated.
        Description copied from class: FilterIteration
        Tests whether or not the specified object should be returned by this Iteration. All objects from the wrapped Iteration pass through this method in the same order as they are coming from the wrapped Iteration.
        Specified by:
        accept in class FilterIteration<BindingSet>
        Parameters:
        bindingSet - The object to be tested.
        Returns:
        true if the object should be returned, false otherwise.
      • clearExcludeSet

        protected long clearExcludeSet()
        Deprecated.