BooleanIterable, PrimitiveIterableAbstractLazyBooleanIterable, CollectBooleanIterable, CollectBooleanToBooleanIterable, CollectByteToBooleanIterable, CollectCharToBooleanIterable, CollectDoubleToBooleanIterable, CollectFloatToBooleanIterable, CollectIntToBooleanIterable, CollectLongToBooleanIterable, CollectShortToBooleanIterable, LazyBooleanIterableAdapter, ReverseBooleanIterable, SelectBooleanIterable, TapBooleanIterablepublic interface LazyBooleanIterable extends BooleanIterable
| Modifier and Type | Method | Description |
|---|---|---|
<V> LazyIterable<V> |
collect(BooleanToObjectFunction<? extends V> function) |
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
LazyBooleanIterable |
collectBoolean(BooleanToBooleanFunction function) |
|
LazyByteIterable |
collectByte(BooleanToByteFunction function) |
|
LazyCharIterable |
collectChar(BooleanToCharFunction function) |
|
LazyDoubleIterable |
collectDouble(BooleanToDoubleFunction function) |
|
LazyFloatIterable |
collectFloat(BooleanToFloatFunction function) |
|
LazyIntIterable |
collectInt(BooleanToIntFunction function) |
|
LazyLongIterable |
collectLong(BooleanToLongFunction function) |
|
LazyShortIterable |
collectShort(BooleanToShortFunction function) |
|
<V> LazyIterable<V> |
flatCollect(BooleanToObjectFunction<? extends java.lang.Iterable<V>> function) |
|
LazyBooleanIterable |
reject(BooleanPredicate predicate) |
Returns a new BooleanIterable with all of the elements in the BooleanIterable that
return false for the specified predicate.
|
LazyBooleanIterable |
select(BooleanPredicate predicate) |
Returns a new BooleanIterable with all of the elements in the BooleanIterable that
return true for the specified predicate.
|
LazyBooleanIterable |
tap(BooleanProcedure procedure) |
allSatisfy, anySatisfy, asLazy, booleanIterator, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, noneSatisfy, reduce, reduceIfEmpty, reject, select, toArray, toBag, toList, toSetappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringLazyBooleanIterable tap(BooleanProcedure procedure)
tap in interface BooleanIterableLazyBooleanIterable select(BooleanPredicate predicate)
BooleanIterableselect in interface BooleanIterableLazyBooleanIterable reject(BooleanPredicate predicate)
BooleanIterablereject in interface BooleanIterable<V> LazyIterable<V> collect(BooleanToObjectFunction<? extends V> function)
BooleanIterablecollect in interface BooleanIterable<V> LazyIterable<V> flatCollect(BooleanToObjectFunction<? extends java.lang.Iterable<V>> function)
LazyBooleanIterable collectBoolean(BooleanToBooleanFunction function)
LazyByteIterable collectByte(BooleanToByteFunction function)
LazyCharIterable collectChar(BooleanToCharFunction function)
LazyShortIterable collectShort(BooleanToShortFunction function)
LazyIntIterable collectInt(BooleanToIntFunction function)
LazyFloatIterable collectFloat(BooleanToFloatFunction function)
LazyLongIterable collectLong(BooleanToLongFunction function)
LazyDoubleIterable collectDouble(BooleanToDoubleFunction function)
Copyright © 2004–2020. All rights reserved.