Uses of Interface
org.eclipse.collections.api.bag.ImmutableBag
-
Packages that use ImmutableBag 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.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.collection org.eclipse.collections.api.factory.bag This package contains factory API for creating instance of typeBag.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.multimap.bag This package contains interfaces forBagMultimap.org.eclipse.collections.api.partition.bag This package contains interfaces forPartitionBag.org.eclipse.collections.api.stack This package contains interfaces for stack API.org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBaginterface.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBaginterface.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bimap.immutable org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.immutable This package contains implementations of theImmutableCollectioninterface.org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollectioninterface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.factory This package contains static utilities for creating mutable and immutable collection factories.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableListinterface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMapinterface.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.immutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.multimap.bag This package contains implementations of theBagMultimapinterface.org.eclipse.collections.impl.partition.bag This package contains implementations of thePartitionBaginterface.org.eclipse.collections.impl.set.immutable This package contains the implementations ofImmutableSet.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStackinterface. -
-
Uses of ImmutableBag in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return ImmutableBag Modifier and Type Method Description default ImmutableBag<T>LazyIterable. toImmutableBag()default ImmutableBag<T>RichIterable. toImmutableBag()Converts the RichIterable to the default ImmutableBag implementation. -
Uses of ImmutableBag in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return ImmutableBag Modifier and Type Method Description <V> ImmutableBag<V>ImmutableBag. collect(Function<? super T,? extends V> function)<V> ImmutableBag<V>ImmutableBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<P,V>
ImmutableBag<V>ImmutableBag. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)<V> ImmutableBag<V>ImmutableBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)default <V> ImmutableBag<V>ImmutableBag. countBy(Function<? super T,? extends V> function)default <V> ImmutableBag<V>ImmutableBag. countByEach(Function<? super T,? extends java.lang.Iterable<V>> function)default <V,P>
ImmutableBag<V>ImmutableBag. countByWith(Function2<? super T,? super P,? extends V> function, P parameter)<V> ImmutableBag<V>ImmutableBag. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)default <P,V>
ImmutableBag<V>ImmutableBag. flatCollectWith(Function2<? super T,? super P,? extends java.lang.Iterable<V>> function, P parameter)ImmutableBag<T>ImmutableBag. newWith(T element)ImmutableBag<T>ImmutableBag. newWithAll(java.lang.Iterable<? extends T> elements)ImmutableBag<T>ImmutableBag. newWithout(T element)ImmutableBag<T>ImmutableBag. newWithoutAll(java.lang.Iterable<? extends T> elements)ImmutableBag<T>ImmutableBag. reject(Predicate<? super T> predicate)<P> ImmutableBag<T>ImmutableBag. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)ImmutableBag<T>ImmutableBag. select(Predicate<? super T> predicate)ImmutableBag<T>ImmutableBag. selectByOccurrences(IntPredicate predicate)default ImmutableBag<T>ImmutableBag. selectDuplicates()<S> ImmutableBag<S>ImmutableBag. selectInstancesOf(java.lang.Class<S> clazz)<P> ImmutableBag<T>ImmutableBag. selectWith(Predicate2<? super T,? super P> predicate, P parameter)ImmutableBag<T>ImmutableBag. tap(Procedure<? super T> procedure)ImmutableBag<T>MutableBag. toImmutable()default ImmutableBag<T>ImmutableBag. toImmutableBag()Overrides toImmutableBag in RichIterable to return this.default ImmutableBag<T>MutableBag. toImmutableBag()Converts the MutableBag to the default ImmutableBag implementation.<S> ImmutableBag<Pair<T,S>>ImmutableBag. zip(java.lang.Iterable<S> that)Deprecated.in 6.0. -
Uses of ImmutableBag in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableBag Modifier and Type Method Description <V> ImmutableBag<V>ImmutableBooleanBag. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteBag. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharBag. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleBag. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatBag. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntBag. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongBag. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortBag. collect(ShortToObjectFunction<? extends V> function) -
Uses of ImmutableBag in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return ImmutableBag Modifier and Type Method Description default <V> ImmutableBag<V>ImmutableSortedBag. countBy(Function<? super T,? extends V> function)default <V> ImmutableBag<V>ImmutableSortedBag. countByEach(Function<? super T,? extends java.lang.Iterable<V>> function)default <V,P>
ImmutableBag<V>ImmutableSortedBag. countByWith(Function2<? super T,? super P,? extends V> function, P parameter) -
Uses of ImmutableBag in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return ImmutableBag Modifier and Type Method Description default <V> ImmutableBag<V>ImmutableCollection. countBy(Function<? super T,? extends V> function)default <V> ImmutableBag<V>ImmutableCollection. countByEach(Function<? super T,? extends java.lang.Iterable<V>> function)default <V,P>
ImmutableBag<V>ImmutableCollection. countByWith(Function2<? super T,? super P,? extends V> function, P parameter) -
Uses of ImmutableBag in org.eclipse.collections.api.factory.bag
Methods in org.eclipse.collections.api.factory.bag that return ImmutableBag Modifier and Type Method Description <T> ImmutableBag<T>ImmutableBagFactory. empty()default <T> ImmutableBag<T>ImmutableBagFactory. fromStream(java.util.stream.Stream<? extends T> stream)<T> ImmutableBag<T>ImmutableBagFactory. of()Same asImmutableBagFactory.empty().<T> ImmutableBag<T>ImmutableBagFactory. of(T element)Same asImmutableBagFactory.with(Object).<T> ImmutableBag<T>ImmutableBagFactory. of(T... elements)Same asImmutableBagFactory.with(Object[]).<T> ImmutableBag<T>ImmutableBagFactory. ofAll(java.lang.Iterable<? extends T> items)default <T> ImmutableBag<T>ImmutableBagFactory. ofOccurrences(ObjectIntPair<T>... elementsWithOccurrences)default <T> ImmutableBag<T>ImmutableBagFactory. ofOccurrences(T element, int occurrence)default <T> ImmutableBag<T>ImmutableBagFactory. ofOccurrences(T element1, int occurrence1, T element2, int occurrence2)default <T> ImmutableBag<T>ImmutableBagFactory. ofOccurrences(T element1, int occurrence1, T element2, int occurrence2, T element3, int occurrence3)default <T> ImmutableBag<T>ImmutableBagFactory. ofOccurrences(T element1, int occurrence1, T element2, int occurrence2, T element3, int occurrence3, T element4, int occurrence4)<T> ImmutableBag<T>ImmutableBagFactory. with()Same asImmutableBagFactory.empty().<T> ImmutableBag<T>ImmutableBagFactory. with(T element)<T> ImmutableBag<T>ImmutableBagFactory. with(T... elements)<T> ImmutableBag<T>ImmutableBagFactory. withAll(java.lang.Iterable<? extends T> items)default <T> ImmutableBag<T>ImmutableBagFactory. withOccurrences(ObjectIntPair<T>... elementsWithOccurrences)default <T> ImmutableBag<T>ImmutableBagFactory. withOccurrences(T element, int occurrence)default <T> ImmutableBag<T>ImmutableBagFactory. withOccurrences(T element1, int occurrence1, T element2, int occurrence2)default <T> ImmutableBag<T>ImmutableBagFactory. withOccurrences(T element1, int occurrence1, T element2, int occurrence2, T element3, int occurrence3)default <T> ImmutableBag<T>ImmutableBagFactory. withOccurrences(T element1, int occurrence1, T element2, int occurrence2, T element3, int occurrence3, T element4, int occurrence4) -
Uses of ImmutableBag in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableBag Modifier and Type Method Description <VV> ImmutableBag<VV>ImmutableMap. collect(Function<? super V,? extends VV> function)<R> ImmutableBag<R>ImmutableMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)<P,VV>
ImmutableBag<VV>ImmutableMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)default <V1> ImmutableBag<V1>ImmutableMapIterable. countBy(Function<? super V,? extends V1> function)default <V1> ImmutableBag<V1>ImmutableMapIterable. countByEach(Function<? super V,? extends java.lang.Iterable<V1>> function)default <V1,P>
ImmutableBag<V1>ImmutableMapIterable. countByWith(Function2<? super V,? super P,? extends V1> function, P parameter)<R> ImmutableBag<R>ImmutableMap. flatCollect(Function<? super V,? extends java.lang.Iterable<R>> function)default <P,R>
ImmutableBag<R>ImmutableMap. flatCollectWith(Function2<? super V,? super P,? extends java.lang.Iterable<R>> function, P parameter)ImmutableBag<V>ImmutableMap. reject(Predicate<? super V> predicate)<P> ImmutableBag<V>ImmutableMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)ImmutableBag<V>ImmutableMap. select(Predicate<? super V> predicate)<S> ImmutableBag<S>ImmutableMap. selectInstancesOf(java.lang.Class<S> clazz)<P> ImmutableBag<V>ImmutableMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<S> ImmutableBag<Pair<V,S>>ImmutableMap. zip(java.lang.Iterable<S> that)Deprecated.in 6.0. -
Uses of ImmutableBag in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableBag Modifier and Type Method Description <V> ImmutableBag<V>ImmutableByteBooleanMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteByteMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteCharMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteDoubleMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteFloatMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteIntMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteLongMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteShortMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharBooleanMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharByteMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharCharMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharDoubleMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharFloatMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharIntMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharLongMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharShortMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleBooleanMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleByteMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleCharMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleDoubleMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleFloatMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleIntMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleLongMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleShortMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatBooleanMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatByteMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatCharMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatDoubleMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatFloatMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatIntMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatLongMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatShortMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntBooleanMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntByteMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntCharMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntDoubleMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntFloatMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntIntMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntLongMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntShortMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongBooleanMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongByteMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongCharMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongDoubleMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongFloatMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongIntMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongLongMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongShortMap. collect(ShortToObjectFunction<? extends V> function)<VV> ImmutableBag<VV>ImmutablePrimitiveObjectMap. collect(Function<? super V,? extends VV> function)<V> ImmutableBag<V>ImmutableShortBooleanMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortByteMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortCharMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortDoubleMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortFloatMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortIntMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortLongMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortShortMap. collect(ShortToObjectFunction<? extends V> function)<VV> ImmutableBag<VV>ImmutablePrimitiveObjectMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<P,VV>
ImmutableBag<VV>ImmutablePrimitiveObjectMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<VV> ImmutableBag<VV>ImmutablePrimitiveObjectMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)default <P,VV>
ImmutableBag<VV>ImmutablePrimitiveObjectMap. flatCollectWith(Function2<? super V,? super P,? extends java.lang.Iterable<VV>> function, P parameter)ImmutableBag<V>ImmutablePrimitiveObjectMap. reject(Predicate<? super V> predicate)<P> ImmutableBag<V>ImmutablePrimitiveObjectMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)ImmutableBag<V>ImmutablePrimitiveObjectMap. select(Predicate<? super V> predicate)<S> ImmutableBag<S>ImmutablePrimitiveObjectMap. selectInstancesOf(java.lang.Class<S> clazz)<P> ImmutableBag<V>ImmutablePrimitiveObjectMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<S> ImmutableBag<Pair<V,S>>ImmutablePrimitiveObjectMap. zip(java.lang.Iterable<S> that)Deprecated.in 7.0. -
Uses of ImmutableBag in org.eclipse.collections.api.multimap.bag
Methods in org.eclipse.collections.api.multimap.bag that return ImmutableBag Modifier and Type Method Description ImmutableBag<V>ImmutableBagMultimap. get(K key)Method parameters in org.eclipse.collections.api.multimap.bag with type arguments of type ImmutableBag Modifier and Type Method Description voidImmutableBagMultimap. forEachKeyImmutableBag(Procedure2<? super K,? super ImmutableBag<V>> procedure) -
Uses of ImmutableBag in org.eclipse.collections.api.partition.bag
Methods in org.eclipse.collections.api.partition.bag that return ImmutableBag Modifier and Type Method Description ImmutableBag<T>PartitionImmutableBag. getRejected()ImmutableBag<T>PartitionImmutableBag. getSelected() -
Uses of ImmutableBag in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ImmutableBag Modifier and Type Method Description default <V> ImmutableBag<V>ImmutableStack. countBy(Function<? super T,? extends V> function)default <V> ImmutableBag<V>ImmutableStack. countByEach(Function<? super T,? extends java.lang.Iterable<V>> function)default <V,P>
ImmutableBag<V>ImmutableStack. countByWith(Function2<? super T,? super P,? extends V> function, P parameter) -
Uses of ImmutableBag in org.eclipse.collections.impl.bag.immutable
Classes in org.eclipse.collections.impl.bag.immutable that implement ImmutableBag Modifier and Type Class Description classAbstractImmutableBag<T>classImmutableArrayBag<T>(package private) classImmutableEmptyBag<T>This is a zero elementImmutableBagwhich is created by calling the Bags.immutable.empty().classImmutableHashBag<T>(package private) classImmutableSingletonBag<T>Fields in org.eclipse.collections.impl.bag.immutable declared as ImmutableBag Modifier and Type Field Description (package private) static ImmutableBag<?>ImmutableEmptyBag. INSTANCEMethods in org.eclipse.collections.impl.bag.immutable that return ImmutableBag Modifier and Type Method Description <V> ImmutableBag<V>ImmutableArrayBag. collect(Function<? super T,? extends V> function)<V> ImmutableBag<V>ImmutableEmptyBag. collect(Function<? super T,? extends V> function)<V> ImmutableBag<V>ImmutableHashBag. collect(Function<? super T,? extends V> function)<V> ImmutableBag<V>ImmutableSingletonBag. collect(Function<? super T,? extends V> function)<V> ImmutableBag<V>ImmutableArrayBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ImmutableBag<V>ImmutableEmptyBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ImmutableBag<V>ImmutableHashBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ImmutableBag<V>ImmutableSingletonBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<P,V>
ImmutableBag<V>AbstractImmutableBag. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)<P,V>
ImmutableBag<V>ImmutableEmptyBag. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)<V> ImmutableBag<V>AbstractImmutableBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)<V> ImmutableBag<V>ImmutableEmptyBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)<V> ImmutableBag<V>AbstractImmutableBag. countBy(Function<? super T,? extends V> function)<V> ImmutableBag<V>AbstractImmutableBagIterable. countBy(Function<? super T,? extends V> function)<V> ImmutableBag<V>ImmutableEmptyBag. countBy(Function<? super T,? extends V> function)<V> ImmutableBag<V>AbstractImmutableBag. countByEach(Function<? super T,? extends java.lang.Iterable<V>> function)<V> ImmutableBag<V>AbstractImmutableBagIterable. countByEach(Function<? super T,? extends java.lang.Iterable<V>> function)<V> ImmutableBag<V>ImmutableEmptyBag. countByEach(Function<? super T,? extends java.lang.Iterable<V>> function)<V,P>
ImmutableBag<V>AbstractImmutableBag. countByWith(Function2<? super T,? super P,? extends V> function, P parameter)<V,P>
ImmutableBag<V>AbstractImmutableBagIterable. countByWith(Function2<? super T,? super P,? extends V> function, P parameter)<V,P>
ImmutableBag<V>ImmutableEmptyBag. countByWith(Function2<? super T,? super P,? extends V> function, P parameter)<T> ImmutableBag<T>ImmutableBagFactoryImpl. empty()private ImmutableBag<T>ImmutableSingletonBag. emptyIfMatchesOrThis(Predicate<java.lang.Object> predicate)<V> ImmutableBag<V>ImmutableArrayBag. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)<V> ImmutableBag<V>ImmutableEmptyBag. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)<V> ImmutableBag<V>ImmutableHashBag. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)<V> ImmutableBag<V>ImmutableSingletonBag. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)private ImmutableBag<T>ImmutableArrayBag. newArrayBagWith(T element, int elementIndex, int distinctItemCount)ImmutableBag<T>ImmutableArrayBag. newWith(T element)ImmutableBag<T>ImmutableEmptyBag. newWith(T element)ImmutableBag<T>ImmutableHashBag. newWith(T element)ImmutableBag<T>ImmutableSingletonBag. newWith(T element)ImmutableBag<T>ImmutableArrayBag. newWithAll(java.lang.Iterable<? extends T> elements)ImmutableBag<T>ImmutableEmptyBag. newWithAll(java.lang.Iterable<? extends T> elements)ImmutableBag<T>ImmutableHashBag. newWithAll(java.lang.Iterable<? extends T> elements)ImmutableBag<T>ImmutableSingletonBag. newWithAll(java.lang.Iterable<? extends T> elements)ImmutableBag<T>ImmutableArrayBag. newWithout(T element)ImmutableBag<T>ImmutableEmptyBag. newWithout(T element)ImmutableBag<T>ImmutableHashBag. newWithout(T element)ImmutableBag<T>ImmutableSingletonBag. newWithout(T element)ImmutableBag<T>AbstractImmutableBag. newWithoutAll(java.lang.Iterable<? extends T> elements)ImmutableBag<T>ImmutableSingletonBag. newWithoutAll(java.lang.Iterable<? extends T> elements)<T> ImmutableBag<T>ImmutableBagFactoryImpl. of()<T> ImmutableBag<T>ImmutableBagFactoryImpl. of(T element)<T> ImmutableBag<T>ImmutableBagFactoryImpl. of(T... elements)<T> ImmutableBag<T>ImmutableBagFactoryImpl. ofAll(java.lang.Iterable<? extends T> items)ImmutableBag<T>ImmutableArrayBag. reject(Predicate<? super T> predicate)ImmutableBag<T>ImmutableEmptyBag. reject(Predicate<? super T> predicate)ImmutableBag<T>ImmutableHashBag. reject(Predicate<? super T> predicate)ImmutableBag<T>ImmutableSingletonBag. reject(Predicate<? super T> predicate)<P> ImmutableBag<T>AbstractImmutableBag. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ImmutableBag<T>ImmutableEmptyBag. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)ImmutableBag<T>ImmutableArrayBag. select(Predicate<? super T> predicate)ImmutableBag<T>ImmutableEmptyBag. select(Predicate<? super T> predicate)ImmutableBag<T>ImmutableHashBag. select(Predicate<? super T> predicate)ImmutableBag<T>ImmutableSingletonBag. select(Predicate<? super T> predicate)ImmutableBag<T>ImmutableArrayBag. selectByOccurrences(IntPredicate predicate)ImmutableBag<T>ImmutableEmptyBag. selectByOccurrences(IntPredicate predicate)ImmutableBag<T>ImmutableHashBag. selectByOccurrences(IntPredicate predicate)ImmutableBag<T>ImmutableSingletonBag. selectByOccurrences(IntPredicate predicate)<S> ImmutableBag<S>ImmutableArrayBag. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableEmptyBag. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableHashBag. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableSingletonBag. selectInstancesOf(java.lang.Class<S> clazz)<P> ImmutableBag<T>AbstractImmutableBag. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ImmutableBag<T>ImmutableEmptyBag. selectWith(Predicate2<? super T,? super P> predicate, P parameter)ImmutableBag<T>AbstractImmutableBag. tap(Procedure<? super T> procedure)ImmutableBag<T>ImmutableEmptyBag. tap(Procedure<? super T> procedure)ImmutableBag<T>AbstractImmutableBag. toImmutable()<T> ImmutableBag<T>ImmutableBagFactoryImpl. with()<T> ImmutableBag<T>ImmutableBagFactoryImpl. with(T element)<T> ImmutableBag<T>ImmutableBagFactoryImpl. with(T... elements)<T> ImmutableBag<T>ImmutableBagFactoryImpl. withAll(java.lang.Iterable<? extends T> items)<S> ImmutableBag<Pair<T,S>>ImmutableArrayBag. zip(java.lang.Iterable<S> that)Deprecated.in 6.0.<S> ImmutableBag<Pair<T,S>>ImmutableEmptyBag. zip(java.lang.Iterable<S> that)Deprecated.in 6.0.<S> ImmutableBag<Pair<T,S>>ImmutableHashBag. zip(java.lang.Iterable<S> that)Deprecated.in 6.0.<S> ImmutableBag<Pair<T,S>>ImmutableSingletonBag. zip(java.lang.Iterable<S> that)Deprecated.in 6.0. -
Uses of ImmutableBag in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return ImmutableBag Modifier and Type Method Description <V> ImmutableBag<V>ImmutableBooleanEmptyBag. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableBooleanHashBag. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableBooleanSingletonBag. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteEmptyBag. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteHashBag. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteSingletonBag. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharEmptyBag. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharHashBag. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharSingletonBag. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleEmptyBag. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleHashBag. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleSingletonBag. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatEmptyBag. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatHashBag. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatSingletonBag. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntEmptyBag. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntHashBag. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntSingletonBag. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongEmptyBag. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongHashBag. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongSingletonBag. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortEmptyBag. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortHashBag. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortSingletonBag. collect(ShortToObjectFunction<? extends V> function) -
Uses of ImmutableBag in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable that return ImmutableBag Modifier and Type Method Description ImmutableBag<T>AbstractMutableBag. toImmutable()ImmutableBag<T>MultiReaderHashBag. toImmutable()ImmutableBag<T>MultiReaderHashBag.UntouchableMutableBag. toImmutable()ImmutableBag<T>SynchronizedBag. toImmutable()ImmutableBag<T>UnmodifiableBag. toImmutable() -
Uses of ImmutableBag in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable that return ImmutableBag Modifier and Type Method Description <V> ImmutableBag<V>AbstractImmutableSortedBag. countBy(Function<? super T,? extends V> function)<V> ImmutableBag<V>ImmutableEmptySortedBag. countBy(Function<? super T,? extends V> function)<V> ImmutableBag<V>AbstractImmutableSortedBag. countByEach(Function<? super T,? extends java.lang.Iterable<V>> function)<V> ImmutableBag<V>ImmutableEmptySortedBag. countByEach(Function<? super T,? extends java.lang.Iterable<V>> function)<V,P>
ImmutableBag<V>AbstractImmutableSortedBag. countByWith(Function2<? super T,? super P,? extends V> function, P parameter)<V,P>
ImmutableBag<V>ImmutableEmptySortedBag. countByWith(Function2<? super T,? super P,? extends V> function, P parameter) -
Uses of ImmutableBag in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable that return ImmutableBag Modifier and Type Method Description <VV> ImmutableBag<VV>AbstractImmutableBiMap. collect(Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>AbstractImmutableBiMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<P,VV>
ImmutableBag<VV>AbstractImmutableBiMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<VV> ImmutableBag<VV>AbstractImmutableBiMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function) -
Uses of ImmutableBag in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return ImmutableBag Modifier and Type Method Description ImmutableBag<T>AbstractSynchronizedRichIterable. toImmutableBag() -
Uses of ImmutableBag in org.eclipse.collections.impl.collection.immutable
Methods in org.eclipse.collections.impl.collection.immutable that return ImmutableBag Modifier and Type Method Description <V> ImmutableBag<V>AbstractImmutableCollection. countBy(Function<? super T,? extends V> function)<V> ImmutableBag<V>AbstractImmutableCollection. countByEach(Function<? super T,? extends java.lang.Iterable<V>> function)<V,P>
ImmutableBag<V>AbstractImmutableCollection. countByWith(Function2<? super T,? super P,? extends V> function, P parameter) -
Uses of ImmutableBag in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable that return ImmutableBag Modifier and Type Method Description ImmutableBag<T>AbstractMultiReaderMutableCollection. toImmutableBag() -
Uses of ImmutableBag in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type ImmutableBag Modifier and Type Method Description static <T> java.util.stream.Collector<T,?,ImmutableBag<T>>Collectors2. toImmutableBag()Returns the elements as an ImmutableBag. -
Uses of ImmutableBag in org.eclipse.collections.impl.factory
Methods in org.eclipse.collections.impl.factory that return ImmutableBag Modifier and Type Method Description static <T> ImmutableBag<T>Iterables. iBag()static <T> ImmutableBag<T>Iterables. iBag(T one)static <T> ImmutableBag<T>Iterables. iBag(T... elements) -
Uses of ImmutableBag in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable that return ImmutableBag Modifier and Type Method Description <V> ImmutableBag<V>ImmutableEmptyList. countBy(Function<? super T,? extends V> function)<V> ImmutableBag<V>ImmutableEmptyList. countByEach(Function<? super T,? extends java.lang.Iterable<V>> function)<V,P>
ImmutableBag<V>ImmutableEmptyList. countByWith(Function2<? super T,? super P,? extends V> function, P parameter) -
Uses of ImmutableBag in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable that return ImmutableBag Modifier and Type Method Description <R> ImmutableBag<R>AbstractImmutableMap. collect(Function<? super V,? extends R> function)<R> ImmutableBag<R>AbstractImmutableMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends R> function)<P,VV>
ImmutableBag<VV>AbstractImmutableMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<V1> ImmutableBag<V1>AbstractImmutableMap. countBy(Function<? super V,? extends V1> function)<V1> ImmutableBag<V1>AbstractImmutableMap. countByEach(Function<? super V,? extends java.lang.Iterable<V1>> function)<V1,P>
ImmutableBag<V1>AbstractImmutableMap. countByWith(Function2<? super V,? super P,? extends V1> function, P parameter)<R> ImmutableBag<R>AbstractImmutableMap. flatCollect(Function<? super V,? extends java.lang.Iterable<R>> function)ImmutableBag<V>AbstractImmutableMap. reject(Predicate<? super V> predicate)<P> ImmutableBag<V>AbstractImmutableMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)ImmutableBag<V>AbstractImmutableMap. select(Predicate<? super V> predicate)<S> ImmutableBag<S>AbstractImmutableMap. selectInstancesOf(java.lang.Class<S> clazz)<P> ImmutableBag<V>AbstractImmutableMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<S> ImmutableBag<Pair<V,S>>AbstractImmutableMap. zip(java.lang.Iterable<S> that)Deprecated.in 6.0. -
Uses of ImmutableBag in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableBag Modifier and Type Method Description <V> ImmutableBag<V>ImmutableByteBooleanEmptyMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteBooleanHashMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteBooleanSingletonMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteByteEmptyMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteByteHashMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteByteSingletonMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteCharEmptyMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteCharHashMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteCharSingletonMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteDoubleEmptyMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteDoubleHashMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteDoubleSingletonMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteFloatEmptyMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteFloatHashMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteFloatSingletonMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteIntEmptyMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteIntHashMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteIntSingletonMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteLongEmptyMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteLongHashMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteLongSingletonMap. collect(LongToObjectFunction<? extends V> function)<VV> ImmutableBag<VV>ImmutableByteObjectEmptyMap. collect(Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableByteObjectHashMap. collect(Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableByteObjectSingletonMap. collect(Function<? super V,? extends VV> function)<V> ImmutableBag<V>ImmutableByteShortEmptyMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteShortHashMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableByteShortSingletonMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharBooleanEmptyMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharBooleanHashMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharBooleanSingletonMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharByteEmptyMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharByteHashMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharByteSingletonMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharCharEmptyMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharCharHashMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharCharSingletonMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharDoubleEmptyMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharDoubleHashMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharDoubleSingletonMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharFloatEmptyMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharFloatHashMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharFloatSingletonMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharIntEmptyMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharIntHashMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharIntSingletonMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharLongEmptyMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharLongHashMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharLongSingletonMap. collect(LongToObjectFunction<? extends V> function)<VV> ImmutableBag<VV>ImmutableCharObjectEmptyMap. collect(Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableCharObjectHashMap. collect(Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableCharObjectSingletonMap. collect(Function<? super V,? extends VV> function)<V> ImmutableBag<V>ImmutableCharShortEmptyMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharShortHashMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharShortSingletonMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleBooleanEmptyMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleBooleanHashMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleBooleanSingletonMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleByteEmptyMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleByteHashMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleByteSingletonMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleCharEmptyMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleCharHashMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleCharSingletonMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleDoubleEmptyMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleDoubleHashMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleDoubleSingletonMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleFloatEmptyMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleFloatHashMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleFloatSingletonMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleIntEmptyMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleIntHashMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleIntSingletonMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleLongEmptyMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleLongHashMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleLongSingletonMap. collect(LongToObjectFunction<? extends V> function)<VV> ImmutableBag<VV>ImmutableDoubleObjectEmptyMap. collect(Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableDoubleObjectHashMap. collect(Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableDoubleObjectSingletonMap. collect(Function<? super V,? extends VV> function)<V> ImmutableBag<V>ImmutableDoubleShortEmptyMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleShortHashMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleShortSingletonMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatBooleanEmptyMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatBooleanHashMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatBooleanSingletonMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatByteEmptyMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatByteHashMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatByteSingletonMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatCharEmptyMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatCharHashMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatCharSingletonMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatDoubleEmptyMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatDoubleHashMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatDoubleSingletonMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatFloatEmptyMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatFloatHashMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatFloatSingletonMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatIntEmptyMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatIntHashMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatIntSingletonMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatLongEmptyMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatLongHashMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatLongSingletonMap. collect(LongToObjectFunction<? extends V> function)<VV> ImmutableBag<VV>ImmutableFloatObjectEmptyMap. collect(Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableFloatObjectHashMap. collect(Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableFloatObjectSingletonMap. collect(Function<? super V,? extends VV> function)<V> ImmutableBag<V>ImmutableFloatShortEmptyMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatShortHashMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatShortSingletonMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntBooleanEmptyMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntBooleanHashMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntBooleanSingletonMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntByteEmptyMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntByteHashMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntByteSingletonMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntCharEmptyMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntCharHashMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntCharSingletonMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntDoubleEmptyMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntDoubleHashMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntDoubleSingletonMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntFloatEmptyMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntFloatHashMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntFloatSingletonMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntIntEmptyMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntIntHashMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntIntSingletonMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntLongEmptyMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntLongHashMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntLongSingletonMap. collect(LongToObjectFunction<? extends V> function)<VV> ImmutableBag<VV>ImmutableIntObjectEmptyMap. collect(Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableIntObjectHashMap. collect(Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableIntObjectSingletonMap. collect(Function<? super V,? extends VV> function)<V> ImmutableBag<V>ImmutableIntShortEmptyMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntShortHashMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntShortSingletonMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongBooleanEmptyMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongBooleanHashMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongBooleanSingletonMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongByteEmptyMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongByteHashMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongByteSingletonMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongCharEmptyMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongCharHashMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongCharSingletonMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongDoubleEmptyMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongDoubleHashMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongDoubleSingletonMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongFloatEmptyMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongFloatHashMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongFloatSingletonMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongIntEmptyMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongIntHashMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongIntSingletonMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongLongEmptyMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongLongHashMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongLongSingletonMap. collect(LongToObjectFunction<? extends V> function)<VV> ImmutableBag<VV>ImmutableLongObjectEmptyMap. collect(Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableLongObjectHashMap. collect(Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableLongObjectSingletonMap. collect(Function<? super V,? extends VV> function)<V> ImmutableBag<V>ImmutableLongShortEmptyMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongShortHashMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongShortSingletonMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortBooleanEmptyMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortBooleanHashMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortBooleanSingletonMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortByteEmptyMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortByteHashMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortByteSingletonMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortCharEmptyMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortCharHashMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortCharSingletonMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortDoubleEmptyMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortDoubleHashMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortDoubleSingletonMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortFloatEmptyMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortFloatHashMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortFloatSingletonMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortIntEmptyMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortIntHashMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortIntSingletonMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortLongEmptyMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortLongHashMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortLongSingletonMap. collect(LongToObjectFunction<? extends V> function)<VV> ImmutableBag<VV>ImmutableShortObjectEmptyMap. collect(Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableShortObjectHashMap. collect(Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableShortObjectSingletonMap. collect(Function<? super V,? extends VV> function)<V> ImmutableBag<V>ImmutableShortShortEmptyMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortShortHashMap. collect(ShortToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortShortSingletonMap. collect(ShortToObjectFunction<? extends V> function)<VV> ImmutableBag<VV>ImmutableByteObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableByteObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableByteObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableCharObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableCharObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableCharObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableDoubleObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableDoubleObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableDoubleObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableFloatObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableFloatObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableFloatObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableIntObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableIntObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableIntObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableLongObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableLongObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableLongObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableShortObjectEmptyMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableShortObjectHashMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<VV> ImmutableBag<VV>ImmutableShortObjectSingletonMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends VV> function)<P,VV>
ImmutableBag<VV>ImmutableByteObjectEmptyMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableByteObjectHashMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableByteObjectSingletonMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableCharObjectEmptyMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableCharObjectHashMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableCharObjectSingletonMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableDoubleObjectEmptyMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableDoubleObjectHashMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableDoubleObjectSingletonMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableFloatObjectEmptyMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableFloatObjectHashMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableFloatObjectSingletonMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableIntObjectEmptyMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableIntObjectHashMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableIntObjectSingletonMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableLongObjectEmptyMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableLongObjectHashMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableLongObjectSingletonMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableShortObjectEmptyMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableShortObjectHashMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<P,VV>
ImmutableBag<VV>ImmutableShortObjectSingletonMap. collectWith(Function2<? super V,? super P,? extends VV> function, P parameter)<VV> ImmutableBag<VV>ImmutableByteObjectEmptyMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableByteObjectHashMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableByteObjectSingletonMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableCharObjectEmptyMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableCharObjectHashMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableCharObjectSingletonMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableDoubleObjectEmptyMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableDoubleObjectHashMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableDoubleObjectSingletonMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableFloatObjectEmptyMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableFloatObjectHashMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableFloatObjectSingletonMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableIntObjectEmptyMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableIntObjectHashMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableIntObjectSingletonMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableLongObjectEmptyMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableLongObjectHashMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableLongObjectSingletonMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableShortObjectEmptyMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableShortObjectHashMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)<VV> ImmutableBag<VV>ImmutableShortObjectSingletonMap. flatCollect(Function<? super V,? extends java.lang.Iterable<VV>> function)ImmutableBag<V>ImmutableByteObjectEmptyMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableByteObjectHashMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableByteObjectSingletonMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableCharObjectEmptyMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableCharObjectHashMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableCharObjectSingletonMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableDoubleObjectEmptyMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableDoubleObjectHashMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableDoubleObjectSingletonMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableFloatObjectEmptyMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableFloatObjectHashMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableFloatObjectSingletonMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableIntObjectEmptyMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableIntObjectHashMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableIntObjectSingletonMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableLongObjectEmptyMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableLongObjectHashMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableLongObjectSingletonMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableShortObjectEmptyMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableShortObjectHashMap. reject(Predicate<? super V> predicate)ImmutableBag<V>ImmutableShortObjectSingletonMap. reject(Predicate<? super V> predicate)<P> ImmutableBag<V>ImmutableByteObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableByteObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableByteObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableCharObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableCharObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableCharObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableDoubleObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableDoubleObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableDoubleObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableFloatObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableFloatObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableFloatObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableIntObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableIntObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableIntObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableLongObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableLongObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableLongObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableShortObjectEmptyMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableShortObjectHashMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableShortObjectSingletonMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)ImmutableBag<V>ImmutableByteObjectEmptyMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableByteObjectHashMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableByteObjectSingletonMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableCharObjectEmptyMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableCharObjectHashMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableCharObjectSingletonMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableDoubleObjectEmptyMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableDoubleObjectHashMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableDoubleObjectSingletonMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableFloatObjectEmptyMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableFloatObjectHashMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableFloatObjectSingletonMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableIntObjectEmptyMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableIntObjectHashMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableIntObjectSingletonMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableLongObjectEmptyMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableLongObjectHashMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableLongObjectSingletonMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableShortObjectEmptyMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableShortObjectHashMap. select(Predicate<? super V> predicate)ImmutableBag<V>ImmutableShortObjectSingletonMap. select(Predicate<? super V> predicate)<S> ImmutableBag<S>ImmutableByteObjectEmptyMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableByteObjectHashMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableByteObjectSingletonMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableCharObjectEmptyMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableCharObjectHashMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableCharObjectSingletonMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableDoubleObjectEmptyMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableDoubleObjectHashMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableDoubleObjectSingletonMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableFloatObjectEmptyMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableFloatObjectHashMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableFloatObjectSingletonMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableIntObjectEmptyMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableIntObjectHashMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableIntObjectSingletonMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableLongObjectEmptyMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableLongObjectHashMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableLongObjectSingletonMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableShortObjectEmptyMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableShortObjectHashMap. selectInstancesOf(java.lang.Class<S> clazz)<S> ImmutableBag<S>ImmutableShortObjectSingletonMap. selectInstancesOf(java.lang.Class<S> clazz)<P> ImmutableBag<V>ImmutableByteObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableByteObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableByteObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableCharObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableCharObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableCharObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableDoubleObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableDoubleObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableDoubleObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableFloatObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableFloatObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableFloatObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableIntObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableIntObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableIntObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableLongObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableLongObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableLongObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableShortObjectEmptyMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableShortObjectHashMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> ImmutableBag<V>ImmutableShortObjectSingletonMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<S> ImmutableBag<Pair<V,S>>ImmutableByteObjectEmptyMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableByteObjectHashMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableByteObjectSingletonMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableCharObjectEmptyMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableCharObjectHashMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableCharObjectSingletonMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableDoubleObjectEmptyMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableDoubleObjectHashMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableDoubleObjectSingletonMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableFloatObjectEmptyMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableFloatObjectHashMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableFloatObjectSingletonMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableIntObjectEmptyMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableIntObjectHashMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableIntObjectSingletonMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableLongObjectEmptyMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableLongObjectHashMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableLongObjectSingletonMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableShortObjectEmptyMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableShortObjectHashMap. zip(java.lang.Iterable<S> that)<S> ImmutableBag<Pair<V,S>>ImmutableShortObjectSingletonMap. zip(java.lang.Iterable<S> that) -
Uses of ImmutableBag in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableBag Modifier and Type Method Description ImmutableBag<V>SynchronizedByteObjectMap. toImmutableBag()ImmutableBag<V>SynchronizedCharObjectMap. toImmutableBag()ImmutableBag<V>SynchronizedDoubleObjectMap. toImmutableBag()ImmutableBag<V>SynchronizedFloatObjectMap. toImmutableBag()ImmutableBag<V>SynchronizedIntObjectMap. toImmutableBag()ImmutableBag<V>SynchronizedLongObjectMap. toImmutableBag()ImmutableBag<V>SynchronizedShortObjectMap. toImmutableBag() -
Uses of ImmutableBag in org.eclipse.collections.impl.map.ordered.immutable
Methods in org.eclipse.collections.impl.map.ordered.immutable that return ImmutableBag Modifier and Type Method Description <V1> ImmutableBag<V1>ImmutableOrderedMapAdapter. countByEach(Function<? super V,? extends java.lang.Iterable<V1>> function) -
Uses of ImmutableBag in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable that return ImmutableBag Modifier and Type Method Description <V1> ImmutableBag<V1>AbstractImmutableSortedMap. countBy(Function<? super V,? extends V1> function)<V1> ImmutableBag<V1>AbstractImmutableSortedMap. countByEach(Function<? super V,? extends java.lang.Iterable<V1>> function)<V1,P>
ImmutableBag<V1>AbstractImmutableSortedMap. countByWith(Function2<? super V,? super P,? extends V1> function, P parameter) -
Uses of ImmutableBag in org.eclipse.collections.impl.multimap.bag
Fields in org.eclipse.collections.impl.multimap.bag with type parameters of type ImmutableBag Modifier and Type Field Description private ImmutableMap<K,ImmutableBag<V>>ImmutableBagMultimapImpl.ImmutableBagMultimapSerializationProxy. mapMethods in org.eclipse.collections.impl.multimap.bag that return ImmutableBag Modifier and Type Method Description protected ImmutableBag<V>ImmutableBagMultimapImpl. createCollection()Method parameters in org.eclipse.collections.impl.multimap.bag with type arguments of type ImmutableBag Modifier and Type Method Description voidImmutableBagMultimapImpl. forEachKeyImmutableBag(Procedure2<? super K,? super ImmutableBag<V>> procedure)Constructor parameters in org.eclipse.collections.impl.multimap.bag with type arguments of type ImmutableBag Constructor Description ImmutableBagMultimapImpl(ImmutableMap<K,ImmutableBag<V>> map)ImmutableBagMultimapImpl(MutableMap<K,ImmutableBag<V>> map)ImmutableBagMultimapSerializationProxy(ImmutableMap<K,ImmutableBag<V>> map) -
Uses of ImmutableBag in org.eclipse.collections.impl.partition.bag
Fields in org.eclipse.collections.impl.partition.bag declared as ImmutableBag Modifier and Type Field Description private ImmutableBag<T>PartitionImmutableBagImpl. rejectedprivate ImmutableBag<T>PartitionImmutableBagImpl. selectedMethods in org.eclipse.collections.impl.partition.bag that return ImmutableBag Modifier and Type Method Description ImmutableBag<T>PartitionImmutableBagImpl. getRejected()ImmutableBag<T>PartitionImmutableBagImpl. getSelected() -
Uses of ImmutableBag in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable that return ImmutableBag Modifier and Type Method Description <V> ImmutableBag<V>ImmutableEmptySet. countBy(Function<? super T,? extends V> function)<V> ImmutableBag<V>ImmutableEmptySet. countByEach(Function<? super T,? extends java.lang.Iterable<V>> function)<V,P>
ImmutableBag<V>ImmutableEmptySet. countByWith(Function2<? super T,? super P,? extends V> function, P parameter) -
Uses of ImmutableBag in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable that return ImmutableBag Modifier and Type Method Description <V> ImmutableBag<V>ImmutableEmptyStack. countByEach(Function<? super T,? extends java.lang.Iterable<V>> function)<V> ImmutableBag<V>ImmutableNotEmptyStack. countByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
-