Uses of Interface
org.eclipse.collections.api.set.ImmutableSetIterable
-
Packages that use ImmutableSetIterable Package Description org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.multimap.set This package contains interfaces forSetMultimap.org.eclipse.collections.api.partition.set This package contains interfaces forPartitionSet.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 ImmutableSetIterable in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return ImmutableSetIterable Modifier and Type Method Description ImmutableSetIterable<T>ImmutableBagIterable. selectUnique()ImmutableSetIterable<Pair<T,Integer>>ImmutableBagIterable. zipWithIndex() -
Uses of ImmutableSetIterable in org.eclipse.collections.api.multimap.set
Methods in org.eclipse.collections.api.multimap.set that return ImmutableSetIterable Modifier and Type Method Description ImmutableSetIterable<V>ImmutableSetIterableMultimap. get(K key) -
Uses of ImmutableSetIterable in org.eclipse.collections.api.partition.set
Methods in org.eclipse.collections.api.partition.set that return ImmutableSetIterable Modifier and Type Method Description ImmutableSetIterable<T>PartitionImmutableSetIterable. getRejected()ImmutableSetIterable<T>PartitionImmutableSetIterable. getSelected() -
Uses of ImmutableSetIterable in org.eclipse.collections.api.set
Subinterfaces of ImmutableSetIterable in org.eclipse.collections.api.set Modifier and Type Interface Description interfaceImmutableSet<T>ImmutableSet is the non-modifiable equivalent interface toMutableSet.Methods in org.eclipse.collections.api.set that return ImmutableSetIterable Modifier and Type Method Description ImmutableSetIterable<T>ImmutableSetIterable. reject(Predicate<? super T> predicate)<P> ImmutableSetIterable<T>ImmutableSetIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)ImmutableSetIterable<T>ImmutableSetIterable. select(Predicate<? super T> predicate)<S> ImmutableSetIterable<S>ImmutableSetIterable. selectInstancesOf(Class<S> clazz)<P> ImmutableSetIterable<T>ImmutableSetIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)ImmutableSetIterable<T>ImmutableSetIterable. tap(Procedure<? super T> procedure)ImmutableSetIterable<T>SetIterable. toImmutable()ImmutableSetIterable<Pair<T,Integer>>ImmutableSetIterable. zipWithIndex()Deprecated.in 6.0. -
Uses of ImmutableSetIterable in org.eclipse.collections.api.set.sorted
Subinterfaces of ImmutableSetIterable in org.eclipse.collections.api.set.sorted Modifier and Type Interface Description interfaceImmutableSortedSet<T>ImmutableSortedSet is the non-modifiable equivalent interface toMutableSortedSet.
-