Uses of Interface
org.eclipse.collections.api.collection.ImmutableCollection
-
Packages that use ImmutableCollection 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.collection org.eclipse.collections.api.collection.primitive This package contains mutable and immutable primitive collection API.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.multimap This package contains interfaces forMultimap.org.eclipse.collections.api.partition This package contains interfaces forPartitionIterable.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. -
-
Uses of ImmutableCollection in org.eclipse.collections.api.bag
Subinterfaces of ImmutableCollection in org.eclipse.collections.api.bag Modifier and Type Interface Description interfaceImmutableBag<T>interfaceImmutableBagIterable<T>Methods in org.eclipse.collections.api.bag that return ImmutableCollection Modifier and Type Method Description <V> ImmutableCollection<V>ImmutableBagIterable. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function) -
Uses of ImmutableCollection in org.eclipse.collections.api.bag.sorted
Subinterfaces of ImmutableCollection in org.eclipse.collections.api.bag.sorted Modifier and Type Interface Description interfaceImmutableSortedBag<T>ImmutableSortedBag is the non-modifiable equivalent interface toMutableSortedBag. -
Uses of ImmutableCollection in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return ImmutableCollection Modifier and Type Method Description <V> ImmutableCollection<V>ImmutableCollection. collect(Function<? super T,? extends V> function)<V> ImmutableCollection<V>ImmutableCollection. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<P,V>
ImmutableCollection<V>ImmutableCollection. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)<V> ImmutableCollection<V>ImmutableCollection. flatCollect(Function<? super T,? extends Iterable<V>> function)default <P,V>
ImmutableCollection<V>ImmutableCollection. flatCollectWith(Function2<? super T,? super P,? extends Iterable<V>> function, P parameter)ImmutableCollection<T>ImmutableCollection. newWith(T element)This method is similar to thewithmethod inMutableCollectionwith the difference that a new copy of this collection with the element appended will be returned.ImmutableCollection<T>ImmutableCollection. newWithAll(Iterable<? extends T> elements)This method is similar to thewithAllmethod inMutableCollectionwith the difference that a new copy of this collection with the elements appended will be returned.ImmutableCollection<T>ImmutableCollection. newWithout(T element)This method is similar to thewithoutmethod inMutableCollectionwith the difference that a new copy of this collection with the element removed will be returned.ImmutableCollection<T>ImmutableCollection. newWithoutAll(Iterable<? extends T> elements)This method is similar to thewithoutAllmethod inMutableCollectionwith the difference that a new copy of this collection with the elements removed will be returned.ImmutableCollection<T>ImmutableCollection. reject(Predicate<? super T> predicate)<P> ImmutableCollection<T>ImmutableCollection. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)ImmutableCollection<T>ImmutableCollection. select(Predicate<? super T> predicate)<S> ImmutableCollection<S>ImmutableCollection. selectInstancesOf(Class<S> clazz)<P> ImmutableCollection<T>ImmutableCollection. selectWith(Predicate2<? super T,? super P> predicate, P parameter)ImmutableCollection<T>ImmutableCollection. tap(Procedure<? super T> procedure)ImmutableCollection<T>MutableCollection. toImmutable()Converts thisMutableCollectionto anImmutableCollection.<S> ImmutableCollection<Pair<T,S>>ImmutableCollection. zip(Iterable<S> that)ImmutableCollection<Pair<T,Integer>>ImmutableCollection. zipWithIndex() -
Uses of ImmutableCollection in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive that return ImmutableCollection Modifier and Type Method Description <V> ImmutableCollection<V>ImmutableBooleanCollection. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableCollection<V>ImmutableByteCollection. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableCollection<V>ImmutableCharCollection. collect(CharToObjectFunction<? extends V> function)<V> ImmutableCollection<V>ImmutableDoubleCollection. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableCollection<V>ImmutableFloatCollection. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableCollection<V>ImmutableIntCollection. collect(IntToObjectFunction<? extends V> function)<V> ImmutableCollection<V>ImmutableLongCollection. collect(LongToObjectFunction<? extends V> function)<V> ImmutableCollection<V>ImmutableShortCollection. collect(ShortToObjectFunction<? extends V> function) -
Uses of ImmutableCollection in org.eclipse.collections.api.list
Subinterfaces of ImmutableCollection in org.eclipse.collections.api.list Modifier and Type Interface Description interfaceImmutableList<T>ImmutableList is the non-modifiable equivalent interface toMutableList. -
Uses of ImmutableCollection in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableCollection Modifier and Type Method Description ImmutableCollection<V>ImmutableMapIterable. reject(Predicate<? super V> predicate)<P> ImmutableCollection<V>ImmutableMapIterable. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)ImmutableCollection<V>ImmutableMapIterable. select(Predicate<? super V> predicate)<S> ImmutableCollection<S>ImmutableMapIterable. selectInstancesOf(Class<S> clazz)<P> ImmutableCollection<V>ImmutableMapIterable. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<S> ImmutableCollection<Pair<V,S>>ImmutableMapIterable. zip(Iterable<S> that)ImmutableCollection<Pair<V,Integer>>ImmutableMapIterable. zipWithIndex() -
Uses of ImmutableCollection in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableCollection Modifier and Type Method Description <V> ImmutableCollection<V>ImmutableObjectBooleanMap. collect(BooleanToObjectFunction<? extends V> function)<V> ImmutableCollection<V>ImmutableObjectByteMap. collect(ByteToObjectFunction<? extends V> function)<V> ImmutableCollection<V>ImmutableObjectCharMap. collect(CharToObjectFunction<? extends V> function)<V> ImmutableCollection<V>ImmutableObjectDoubleMap. collect(DoubleToObjectFunction<? extends V> function)<V> ImmutableCollection<V>ImmutableObjectFloatMap. collect(FloatToObjectFunction<? extends V> function)<V> ImmutableCollection<V>ImmutableObjectIntMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableCollection<V>ImmutableObjectLongMap. collect(LongToObjectFunction<? extends V> function)<V> ImmutableCollection<V>ImmutableObjectShortMap. collect(ShortToObjectFunction<? extends V> function) -
Uses of ImmutableCollection in org.eclipse.collections.api.multimap
Methods in org.eclipse.collections.api.multimap that return ImmutableCollection Modifier and Type Method Description ImmutableCollection<V>ImmutableMultimap. get(K key) -
Uses of ImmutableCollection in org.eclipse.collections.api.partition
Methods in org.eclipse.collections.api.partition that return ImmutableCollection Modifier and Type Method Description ImmutableCollection<T>PartitionImmutableCollection. getRejected()ImmutableCollection<T>PartitionImmutableCollection. getSelected() -
Uses of ImmutableCollection in org.eclipse.collections.api.set
Subinterfaces of ImmutableCollection in org.eclipse.collections.api.set Modifier and Type Interface Description interfaceImmutableSet<T>ImmutableSet is the non-modifiable equivalent interface toMutableSet.interfaceImmutableSetIterable<T> -
Uses of ImmutableCollection in org.eclipse.collections.api.set.sorted
Subinterfaces of ImmutableCollection in org.eclipse.collections.api.set.sorted Modifier and Type Interface Description interfaceImmutableSortedSet<T>ImmutableSortedSet is the non-modifiable equivalent interface toMutableSortedSet.
-