Uses of Interface
org.eclipse.collections.api.bag.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 for
BagMultimap. |
| org.eclipse.collections.api.partition.bag |
This package contains interfaces for
PartitionBag. |
| org.eclipse.collections.impl.bag.immutable |
This package contains implementations of the
ImmutableBag interface. |
-
Uses of ImmutableBagIterable in org.eclipse.collections.api.bag
Subinterfaces of ImmutableBagIterable in org.eclipse.collections.api.bag Modifier and Type Interface Description interfaceImmutableBag<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(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 interfaceImmutableSortedBag<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 Iterable<V1>> function)default <P, V1> ImmutableBagIterable<V1>ImmutableBiMap. flatCollectWith(Function2<? super V,? super P,? extends 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 classAbstractImmutableBag<T>classAbstractImmutableBagIterable<T>classImmutableArrayBag<T>classImmutableHashBag<T>