Uses of Interface
org.eclipse.collections.api.bag.ImmutableBagIterable
-
Packages that use ImmutableBagIterable Package Description 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.bimap This package contains interfaces for BiMap API.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.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.bag.sorted.immutable -
-
Uses of ImmutableBagIterable in org.eclipse.collections.api.bag
Subinterfaces of ImmutableBagIterable in org.eclipse.collections.api.bag Modifier and Type Interface Description interface
ImmutableBag<T>
Methods in org.eclipse.collections.api.bag that return ImmutableBagIterable Modifier and Type Method Description ImmutableBagIterable<T>
ImmutableBagIterable. reject(Predicate<? super T> predicate)
<P> ImmutableBagIterable<T>
ImmutableBagIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
ImmutableBagIterable<T>
ImmutableBagIterable. select(Predicate<? super T> predicate)
ImmutableBagIterable<T>
ImmutableBagIterable. selectByOccurrences(IntPredicate predicate)
default ImmutableBagIterable<T>
ImmutableBagIterable. selectDuplicates()
<S> ImmutableBagIterable<S>
ImmutableBagIterable. selectInstancesOf(java.lang.Class<S> clazz)
<P> ImmutableBagIterable<T>
ImmutableBagIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
ImmutableBagIterable<T>
ImmutableBagIterable. tap(Procedure<? super T> procedure)
ImmutableBagIterable<T>
Bag. toImmutable()
-
Uses of ImmutableBagIterable in org.eclipse.collections.api.bag.sorted
Subinterfaces of ImmutableBagIterable in org.eclipse.collections.api.bag.sorted Modifier and Type Interface Description interface
ImmutableSortedBag<T>
ImmutableSortedBag is the non-modifiable equivalent interface toMutableSortedBag
. -
Uses of ImmutableBagIterable in org.eclipse.collections.api.bimap
Methods in org.eclipse.collections.api.bimap that return ImmutableBagIterable Modifier and Type Method Description <V1> ImmutableBagIterable<V1>
ImmutableBiMap. collect(Function<? super V,? extends V1> function)
<V1> ImmutableBagIterable<V1>
ImmutableBiMap. collectIf(Predicate<? super V> predicate, Function<? super V,? extends V1> function)
<P,V1>
ImmutableBagIterable<V1>ImmutableBiMap. collectWith(Function2<? super V,? super P,? extends V1> function, P parameter)
<V1> ImmutableBagIterable<V1>
ImmutableBiMap. flatCollect(Function<? super V,? extends java.lang.Iterable<V1>> function)
default <P,V1>
ImmutableBagIterable<V1>ImmutableBiMap. flatCollectWith(Function2<? super V,? super P,? extends java.lang.Iterable<V1>> function, P parameter)
-
Uses of ImmutableBagIterable in org.eclipse.collections.api.multimap.bag
Methods in org.eclipse.collections.api.multimap.bag that return ImmutableBagIterable Modifier and Type Method Description ImmutableBagIterable<V>
ImmutableBagIterableMultimap. get(K key)
-
Uses of ImmutableBagIterable in org.eclipse.collections.api.partition.bag
Methods in org.eclipse.collections.api.partition.bag that return ImmutableBagIterable Modifier and Type Method Description ImmutableBagIterable<T>
PartitionImmutableBagIterable. getRejected()
ImmutableBagIterable<T>
PartitionImmutableBagIterable. getSelected()
-
Uses of ImmutableBagIterable in org.eclipse.collections.impl.bag.immutable
Classes in org.eclipse.collections.impl.bag.immutable that implement ImmutableBagIterable Modifier and Type Class Description class
AbstractImmutableBag<T>
class
AbstractImmutableBagIterable<T>
class
ImmutableArrayBag<T>
(package private) class
ImmutableEmptyBag<T>
This is a zero elementImmutableBag
which is created by calling the Bags.immutable.empty().class
ImmutableHashBag<T>
(package private) class
ImmutableSingletonBag<T>
-
Uses of ImmutableBagIterable in org.eclipse.collections.impl.bag.sorted.immutable
Classes in org.eclipse.collections.impl.bag.sorted.immutable that implement ImmutableBagIterable Modifier and Type Class Description (package private) class
AbstractImmutableSortedBag<T>
(package private) class
ImmutableEmptySortedBag<T>
(package private) class
ImmutableSortedBagImpl<T>
-