Uses of Interface
org.eclipse.collections.api.block.function.primitive.BooleanFunction
-
Packages that use BooleanFunction Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.collection org.eclipse.collections.api.factory.map.primitive org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMaporg.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.ordered org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.api.stack This package contains interfaces for stack API. -
-
Uses of BooleanFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type BooleanFunction Modifier and Type Method Description LazyBooleanIterableLazyIterable. collectBoolean(BooleanFunction<? super T> booleanFunction)Returns a lazy BooleanIterable which will transform the underlying iterable data to boolean values based on the booleanFunction.BooleanIterableRichIterable. collectBoolean(BooleanFunction<? super T> booleanFunction)Returns a new primitivebooleaniterable with the results of applying the specified function on each element of the source collection.default <R extends MutableBooleanCollection>
RRichIterable. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)Same asRichIterable.collectBoolean(BooleanFunction), except that the results are gathered into the specifiedtargetcollection. -
Uses of BooleanFunction in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanBagImmutableBag. collectBoolean(BooleanFunction<? super T> booleanFunction)default MutableBooleanBagMutableBag. collectBoolean(BooleanFunction<? super T> booleanFunction)BooleanBagUnsortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanListImmutableSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListMutableSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction)BooleanListSortedBag. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanCollectionImmutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction)default MutableBooleanCollectionMutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction)Returns a new primitivebooleaniterable with the results of applying the specified function on each element of the source collection. -
Uses of BooleanFunction in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive with parameters of type BooleanFunction Modifier and Type Method Description <T> ImmutableByteBooleanMapImmutableByteBooleanMapFactory. from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableByteBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableCharBooleanMapImmutableCharBooleanMapFactory. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableCharBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleBooleanMapImmutableDoubleBooleanMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableDoubleBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableFloatBooleanMapImmutableFloatBooleanMapFactory. from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableFloatBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntBooleanMapImmutableIntBooleanMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableLongBooleanMapImmutableLongBooleanMapFactory. from(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableLongBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K>
ImmutableObjectBooleanMap<K>ImmutableObjectBooleanMapFactory. from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableObjectBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableShortBooleanMapImmutableShortBooleanMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableShortBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableByteBooleanMapMutableByteBooleanMapFactory. from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableByteBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableCharBooleanMapMutableCharBooleanMapFactory. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableCharBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleBooleanMapMutableDoubleBooleanMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableDoubleBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableFloatBooleanMapMutableFloatBooleanMapFactory. from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableFloatBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntBooleanMapMutableIntBooleanMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableLongBooleanMapMutableLongBooleanMapFactory. from(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableLongBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K>
MutableObjectBooleanMap<K>MutableObjectBooleanMapFactory. from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableObjectBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableShortBooleanMapMutableShortBooleanMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableShortBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction. -
Uses of BooleanFunction in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanListImmutableList. collectBoolean(BooleanFunction<? super T> booleanFunction)BooleanListListIterable. collectBoolean(BooleanFunction<? super T> booleanFunction)default MutableBooleanListMutableList. collectBoolean(BooleanFunction<? super T> booleanFunction)MultiReaderList<T>MultiReaderList. sortThisByBoolean(BooleanFunction<? super T> function)MutableList<T>MutableList. sortThisByBoolean(BooleanFunction<? super T> function) -
Uses of BooleanFunction in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanBagImmutableMap. collectBoolean(BooleanFunction<? super V> booleanFunction)ImmutableBooleanListImmutableOrderedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanBagMutableMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanListMutableOrderedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)BooleanListOrderedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)BooleanBagUnsortedMapIterable. collectBoolean(BooleanFunction<? super V> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanBagImmutablePrimitiveObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanBagMutablePrimitiveObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)BooleanBagPrimitiveObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction)<P> booleanMutableByteBooleanMap. getIfAbsentPutWith(byte key, BooleanFunction<? super P> function, P parameter)Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> booleanMutableCharBooleanMap. getIfAbsentPutWith(char key, BooleanFunction<? super P> function, P parameter)Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> booleanMutableDoubleBooleanMap. getIfAbsentPutWith(double key, BooleanFunction<? super P> function, P parameter)Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> booleanMutableFloatBooleanMap. getIfAbsentPutWith(float key, BooleanFunction<? super P> function, P parameter)Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> booleanMutableIntBooleanMap. getIfAbsentPutWith(int key, BooleanFunction<? super P> function, P parameter)Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> booleanMutableLongBooleanMap. getIfAbsentPutWith(long key, BooleanFunction<? super P> function, P parameter)Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> booleanMutableObjectBooleanMap. getIfAbsentPutWith(K key, BooleanFunction<? super P> function, P parameter)Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> booleanMutableShortBooleanMap. getIfAbsentPutWith(short key, BooleanFunction<? super P> function, P parameter)Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.booleanMutableObjectBooleanMap. getIfAbsentPutWithKey(K key, BooleanFunction<? super K> function)Retrieves the value associated with the key if one exists; if it does not, associates the result of invoking the value function with the key. -
Uses of BooleanFunction in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanListImmutableSortedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)MutableBooleanListMutableSortedMap. collectBoolean(BooleanFunction<? super V> booleanFunction)BooleanListSortedMapIterable. collectBoolean(BooleanFunction<? super V> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type BooleanFunction Modifier and Type Method Description OrderedBooleanIterableOrderedIterable. collectBoolean(BooleanFunction<? super T> booleanFunction)ReversibleBooleanIterableReversibleIterable. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanSetImmutableSet. collectBoolean(BooleanFunction<? super T> booleanFunction)default MutableBooleanSetMutableSet. collectBoolean(BooleanFunction<? super T> booleanFunction)BooleanSetUnsortedSetIterable. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanListImmutableSortedSet. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanListMutableSortedSet. collectBoolean(BooleanFunction<? super T> booleanFunction)BooleanListSortedSetIterable. collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of BooleanFunction in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack with parameters of type BooleanFunction Modifier and Type Method Description ImmutableBooleanStackImmutableStack. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanStackMutableStack. collectBoolean(BooleanFunction<? super T> booleanFunction)BooleanStackStackIterable. collectBoolean(BooleanFunction<? super T> booleanFunction)
-