Interface RootBatch<T>

All Superinterfaces:
Batch<T>
All Known Subinterfaces:
RootListBatch<T>, RootSortedSetBatch<T>, RootUnsortedBagBatch<T>, RootUnsortedSetBatch<T>
All Known Implementing Classes:
ListIterableBatch

public interface RootBatch<T> extends Batch<T>
A Batch that must be at the root of the chain, not wrapped in other Batches.
  • Method Details

    • anySatisfy

      boolean anySatisfy(Predicate<? super T> predicate)
    • allSatisfy

      boolean allSatisfy(Predicate<? super T> predicate)
    • detect

      T detect(Predicate<? super T> predicate)