Class ContourPlot.Iterators.ImgSpliterator<P extends ContourPlot.PixelBase>

  • All Implemented Interfaces:
    java.util.Spliterator<P>
    Enclosing class:
    ContourPlot.Iterators

    public static final class ContourPlot.Iterators.ImgSpliterator<P extends ContourPlot.PixelBase>
    extends java.lang.Object
    implements java.util.Spliterator<P>
    The standard Spliterator class for images.
    Author:
    hageldave
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface java.util.Spliterator

        java.util.Spliterator.OfDouble, java.util.Spliterator.OfInt, java.util.Spliterator.OfLong, java.util.Spliterator.OfPrimitive<T extends java.lang.Object,​T_CONS extends java.lang.Object,​T_SPLITR extends java.util.Spliterator.OfPrimitive<T,​T_CONS,​T_SPLITR>>
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private int endIndex  
      private int minimumSplitSize  
      private java.util.function.Supplier<P> pixelSupplier  
      private P px  
      • Fields inherited from interface java.util.Spliterator

        CONCURRENT, DISTINCT, IMMUTABLE, NONNULL, ORDERED, SIZED, SORTED, SUBSIZED
    • Constructor Summary

      Constructors 
      Constructor Description
      ImgSpliterator​(int startIndex, int endIndex, int minSplitSize, java.util.function.Supplier<P> pixelSupplier)
      Constructs a new ImgSpliterator for the specified index range
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int characteristics()  
      long estimateSize()  
      void forEachRemaining​(java.util.function.Consumer<? super P> action)  
      private void setEndIndex​(int endIndex)  
      boolean tryAdvance​(java.util.function.Consumer<? super P> action)  
      java.util.Spliterator<P> trySplit()  
      • Methods inherited from class java.lang.Object

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

        getComparator, getExactSizeIfKnown, hasCharacteristics
    • Field Detail

      • endIndex

        private int endIndex
      • minimumSplitSize

        private final int minimumSplitSize
    • Constructor Detail

      • ImgSpliterator

        public ImgSpliterator​(int startIndex,
                              int endIndex,
                              int minSplitSize,
                              java.util.function.Supplier<P> pixelSupplier)
        Constructs a new ImgSpliterator for the specified index range
        Parameters:
        startIndex - first index of the range (inclusive)
        endIndex - last index of the range (inclusive)
        minSplitSize - minimum split size for this spliterator (minimum number of elements in a split)
        pixelSupplier - a function that allocates a new pixel that points to the index given by the function argument
        Since:
        1.0
    • Method Detail

      • setEndIndex

        private void setEndIndex​(int endIndex)
      • tryAdvance

        public boolean tryAdvance​(java.util.function.Consumer<? super P> action)
        Specified by:
        tryAdvance in interface java.util.Spliterator<P extends ContourPlot.PixelBase>
      • forEachRemaining

        public void forEachRemaining​(java.util.function.Consumer<? super P> action)
        Specified by:
        forEachRemaining in interface java.util.Spliterator<P extends ContourPlot.PixelBase>
      • trySplit

        public java.util.Spliterator<P> trySplit()
        Specified by:
        trySplit in interface java.util.Spliterator<P extends ContourPlot.PixelBase>
      • estimateSize

        public long estimateSize()
        Specified by:
        estimateSize in interface java.util.Spliterator<P extends ContourPlot.PixelBase>
      • characteristics

        public int characteristics()
        Specified by:
        characteristics in interface java.util.Spliterator<P extends ContourPlot.PixelBase>