Class AbstractSkippingIterator<T>

    • Field Detail

      • mComparator

        protected final java.util.Comparator<T> mComparator
        The comparator which defines the order for skipping
    • Constructor Detail

      • AbstractSkippingIterator

        public AbstractSkippingIterator​(java.util.Comparator<T> theComparator)
    • Method Detail

      • comparator

        public java.util.Comparator<T> comparator()
        Returns the comparator for this iterator that specifies the order in which the elements are returned.
        Specified by:
        comparator in interface SkippingIterator<T>
      • estimatedSize

        public long estimatedSize()
        Returns the estimated size of this iterator without advancing the iterator or SkippingIterator.UNKNOWN_SIZE if the estimate is not known. The estimate is for the whole iterator and will not change after the iterator is advanced. There is no guarantee about the accuracy of the estimate.
        Specified by:
        estimatedSize in interface SkippingIterator<T>
      • remove

        public void remove()
        Specified by:
        remove in interface java.util.Iterator<T>
        Specified by:
        remove in interface com.google.common.collect.PeekingIterator<T>
      • computeNext

        protected abstract T computeNext()
        Return the next element to be returned by the iterator
        Returns:
        the next element
      • computeSkipTo

        protected abstract T computeSkipTo​(T theTarget)
        Returns the element that this iteration has skipped to or null if it ran off the end.
        Parameters:
        theTarget - the skipping target
        Returns:
        the first element that is greater or equal to the skipping target, or null if it doesn't exist.
      • computeSkipTo

        protected T computeSkipTo​(T theTarget,
                                  T theBound)
      • isLessOrEqualThan

        public boolean isLessOrEqualThan​(T theElement,
                                         T theBound)
      • next

        public final T next()
        Specified by:
        next in interface java.util.Iterator<T>
        Specified by:
        next in interface com.google.common.collect.PeekingIterator<T>
      • endOfData

        protected final T endOfData()
        Signal that you're done iterating.
        Returns:
        nothing, the result is ignored
      • hasNext

        public final boolean hasNext()
        Specified by:
        hasNext in interface java.util.Iterator<T>
      • close

        public void close()
        Specified by:
        close in interface java.lang.AutoCloseable
        Specified by:
        close in interface CloseableIterator<T>
      • peek

        public final T peek()
        Implementation of peeking to the next item returned by the iterator. Anyone wishing to expose this method simply need to also implement the PeekingIterator interface.
        Specified by:
        peek in interface com.google.common.collect.PeekingIterator<T>
        Returns:
        the next element to be returned
      • skipTo

        public final boolean skipTo​(T theElement)
        Description copied from interface: SkippingIterator
        Moves the iterators position to the next element which is greater than or equal to theElement.
        Specified by:
        skipTo in interface SkippingIterator<T>
        Returns:
        true, if such an element exists (in which case the Iterator.next() call will return it), false otherwise
      • skipTo

        public final boolean skipTo​(T theElement,
                                    T theBound)
        Same contract as SkippingIterator.skipTo(Object) but skipping is bounded: if the implementation can determine that the next element after target is greater than the bound, it can return false. In other words, if the method returns false, no element between the target (incl.) and the bound (incl.) exists. If the method returns true, the next element is definitely greater or equal than the target, but may exceed the bound. If the method returns false, there's no guarantee on the state of the iterator. If it needs to be reused, it must be first reset.
        Specified by:
        skipTo in interface SkippingIterator<T>
        Parameters:
        theElement - the target
        theBound - the bound. null means no upper bound.
        Returns:
        true, if an element that is greater than or equal to theElement but less than or equal to theBound exists.
      • validateSkipTarget

        protected void validateSkipTarget​(T theTarget)
      • reset

        public final void reset()
        Resets the iterator to the beginning so the following Iterator.next() call will return the first element in this iteration.
        Specified by:
        reset in interface ResettableIterator<T>
      • isClosed

        protected boolean isClosed()
      • assertOpen

        protected void assertOpen()
      • resetState

        protected final void resetState()
      • performReset

        protected abstract void performReset()