Class DropWhileIterablePredicate<T>

  • All Implemented Interfaces:
    java.io.Serializable, java.util.function.Predicate<T>, Predicate<T>

    public class DropWhileIterablePredicate<T>
    extends java.lang.Object
    implements Predicate<T>
    Since:
    8.0
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean accept​(T each)  
      • Methods inherited from class java.lang.Object

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

        and, negate, or
      • Methods inherited from interface org.eclipse.collections.api.block.predicate.Predicate

        test
    • Field Detail

      • predicate

        private final Predicate<? super T> predicate
      • doneDroppingElements

        private boolean doneDroppingElements
    • Constructor Detail

      • DropWhileIterablePredicate

        public DropWhileIterablePredicate​(Predicate<? super T> predicate)
    • Method Detail

      • accept

        public boolean accept​(T each)
        Specified by:
        accept in interface Predicate<T>