Class SizeLimitedAccumulatorWrapper<T>

  • All Implemented Interfaces:
    Accumulator<T>, java.lang.Iterable<T>

    public class SizeLimitedAccumulatorWrapper<T>
    extends java.lang.Object
    implements Accumulator<T>
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void add​(T t)  
      void addAll​(java.util.Collection<T> collection)  
      boolean contains​(T t)  
      java.util.Collection<T> get()  
      boolean hasReachedSizeLimit()
      Returns true if this size of this accumulator is greater than or equal to the given maximum size
      java.util.Iterator<T> iterator()  
      int size()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.lang.Iterable

        forEach, spliterator
    • Constructor Detail

      • SizeLimitedAccumulatorWrapper

        public SizeLimitedAccumulatorWrapper​(Accumulator<T> accumulator,
                                             int maxSize)
        Constructor.
        Parameters:
        accumulator - the accumulator to pass items to
        maxSize - the maximum number of items this accumulator will hold
    • Method Detail

      • iterator

        public java.util.Iterator<T> iterator()
        Specified by:
        iterator in interface java.lang.Iterable<T>
      • add

        public void add​(T t)
        Specified by:
        add in interface Accumulator<T>
      • addAll

        public void addAll​(java.util.Collection<T> collection)
        Specified by:
        addAll in interface Accumulator<T>
      • get

        public java.util.Collection<T> get()
        Specified by:
        get in interface Accumulator<T>
      • hasReachedSizeLimit

        public boolean hasReachedSizeLimit()
        Returns true if this size of this accumulator is greater than or equal to the given maximum size
        Returns:
        true if the max size has been reachged