Uses of Interface
org.eclipse.collections.api.set.UnsortedSetIterable
-
Packages that use UnsortedSetIterable Package Description org.eclipse.collections.api.bag This package contains interfaces for Bag API.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.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.impl.lazy.parallel.set org.eclipse.collections.impl.set org.eclipse.collections.impl.set.fixed This package contains implementations ofFixedSizeSet.org.eclipse.collections.impl.set.immutable This package contains the implementations ofImmutableSet.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.set.strategy.immutable This package contains implementations of immutable sets with user definedHashingStrategys.org.eclipse.collections.impl.set.strategy.mutable This package contains implementations of sets with user definedHashingStrategys. -
-
Uses of UnsortedSetIterable in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return UnsortedSetIterable Modifier and Type Method Description UnsortedSetIterable<T>UnsortedBag. selectUnique()UnsortedSetIterable<Pair<T,java.lang.Integer>>UnsortedBag. zipWithIndex()Deprecated.in 6.0. -
Uses of UnsortedSetIterable in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return UnsortedSetIterable Modifier and Type Method Description UnsortedSetIterable<Pair<V,java.lang.Integer>>UnsortedMapIterable. zipWithIndex()Deprecated.in 6.0. -
Uses of UnsortedSetIterable in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return UnsortedSetIterable Modifier and Type Method Description UnsortedSetIterable<Pair<V,java.lang.Integer>>PrimitiveObjectMap. zipWithIndex()Deprecated.in 6.0. -
Uses of UnsortedSetIterable in org.eclipse.collections.api.multimap.set
Methods in org.eclipse.collections.api.multimap.set that return UnsortedSetIterable Modifier and Type Method Description UnsortedSetIterable<V>UnsortedSetMultimap. get(K key) -
Uses of UnsortedSetIterable in org.eclipse.collections.api.partition.set
Methods in org.eclipse.collections.api.partition.set that return UnsortedSetIterable Modifier and Type Method Description UnsortedSetIterable<T>PartitionUnsortedSet. getRejected()UnsortedSetIterable<T>PartitionUnsortedSet. getSelected() -
Uses of UnsortedSetIterable in org.eclipse.collections.api.set
Subinterfaces of UnsortedSetIterable in org.eclipse.collections.api.set Modifier and Type Interface Description interfaceFixedSizeSet<T>A FixedSizeSet is a set that may be mutated, but cannot grow or shrink in size.interfaceImmutableSet<T>ImmutableSet is the non-modifiable equivalent interface toMutableSet.interfaceMultiReaderSet<T>A MultiReaderSet provides thread-safe iteration for a set through methodswithReadLockAndDelegate()andwithWriteLockAndDelegate().interfaceMutableSet<T>A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.Methods in org.eclipse.collections.api.set that return UnsortedSetIterable Modifier and Type Method Description <V> UnsortedSetIterable<V>UnsortedSetIterable. collect(Function<? super T,? extends V> function)<V> UnsortedSetIterable<V>UnsortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<P,V>
UnsortedSetIterable<V>UnsortedSetIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)UnsortedSetIterable<T>UnsortedSetIterable. difference(SetIterable<? extends T> subtrahendSet)<V> UnsortedSetIterable<V>UnsortedSetIterable. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)default <P,V>
UnsortedSetIterable<V>UnsortedSetIterable. flatCollectWith(Function2<? super T,? super P,? extends java.lang.Iterable<V>> function, P parameter)UnsortedSetIterable<T>UnsortedSetIterable. intersect(SetIterable<? extends T> set)UnsortedSetIterable<UnsortedSetIterable<T>>UnsortedSetIterable. powerSet()Returns the set whose members are all possible subsets ofthis.UnsortedSetIterable<T>UnsortedSetIterable. reject(Predicate<? super T> predicate)<P> UnsortedSetIterable<T>UnsortedSetIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)UnsortedSetIterable<T>UnsortedSetIterable. select(Predicate<? super T> predicate)<S> UnsortedSetIterable<S>UnsortedSetIterable. selectInstancesOf(java.lang.Class<S> clazz)<P> UnsortedSetIterable<T>UnsortedSetIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)UnsortedSetIterable<T>UnsortedSetIterable. symmetricDifference(SetIterable<? extends T> setB)UnsortedSetIterable<T>UnsortedSetIterable. tap(Procedure<? super T> procedure)UnsortedSetIterable<T>UnsortedSetIterable. union(SetIterable<? extends T> set)<S> UnsortedSetIterable<Pair<T,S>>UnsortedSetIterable. zip(java.lang.Iterable<S> that)Deprecated.in 6.0.UnsortedSetIterable<Pair<T,java.lang.Integer>>UnsortedSetIterable. zipWithIndex()Deprecated.in 6.0.Methods in org.eclipse.collections.api.set that return types with arguments of type UnsortedSetIterable Modifier and Type Method Description ImmutableSet<UnsortedSetIterable<T>>ImmutableSet. powerSet()MutableSet<UnsortedSetIterable<T>>MutableSet. powerSet()UnsortedSetIterable<UnsortedSetIterable<T>>UnsortedSetIterable. powerSet()Returns the set whose members are all possible subsets ofthis. -
Uses of UnsortedSetIterable in org.eclipse.collections.impl.lazy.parallel.set
Constructors in org.eclipse.collections.impl.lazy.parallel.set with parameters of type UnsortedSetIterable Constructor Description NonParallelUnsortedSetIterable(UnsortedSetIterable<T> delegate) -
Uses of UnsortedSetIterable in org.eclipse.collections.impl.set
Classes in org.eclipse.collections.impl.set that implement UnsortedSetIterable Modifier and Type Class Description classAbstractUnifiedSet<T>Methods in org.eclipse.collections.impl.set that return types with arguments of type UnsortedSetIterable Modifier and Type Method Description MutableSet<UnsortedSetIterable<T>>AbstractUnifiedSet. powerSet() -
Uses of UnsortedSetIterable in org.eclipse.collections.impl.set.fixed
Classes in org.eclipse.collections.impl.set.fixed that implement UnsortedSetIterable Modifier and Type Class Description (package private) classAbstractMemoryEfficientMutableSet<T>(package private) classDoubletonSet<T>(package private) classEmptySet<T>This class is a memory efficient list with no elements.(package private) classQuadrupletonSet<T>(package private) classSingletonSet<T>(package private) classTripletonSet<T> -
Uses of UnsortedSetIterable in org.eclipse.collections.impl.set.immutable
Classes in org.eclipse.collections.impl.set.immutable that implement UnsortedSetIterable Modifier and Type Class Description classAbstractImmutableSet<T>This class is the parent class for all ImmutableSets.(package private) classImmutableDoubletonSet<T>(package private) classImmutableEmptySet<T>This is a zero elementImmutableSetwhich is created by calling the Sets.immutable.empty() method.(package private) classImmutableQuadrupletonSet<T>(package private) classImmutableSingletonSet<T>(package private) classImmutableTripletonSet<T>(package private) classImmutableUnifiedSet<T>Methods in org.eclipse.collections.impl.set.immutable that return types with arguments of type UnsortedSetIterable Modifier and Type Method Description ImmutableSet<UnsortedSetIterable<T>>AbstractImmutableSet. powerSet() -
Uses of UnsortedSetIterable in org.eclipse.collections.impl.set.mutable
Classes in org.eclipse.collections.impl.set.mutable that implement UnsortedSetIterable Modifier and Type Class Description classAbstractMutableSet<T>classMultiReaderUnifiedSet<T>MultiReadUnifiedSet provides a thread-safe wrapper around a UnifiedSet, using a ReentrantReadWriteLock.(package private) static classMultiReaderUnifiedSet.UntouchableMutableSet<T>classSetAdapter<T>This class provides a MutableSet wrapper around a JDK Collections Set interface instance.classSynchronizedMutableSet<T>A synchronized view of aMutableSet.classUnifiedSet<T>classUnmodifiableMutableSet<T>An unmodifiable view of a list.Methods in org.eclipse.collections.impl.set.mutable that return types with arguments of type UnsortedSetIterable Modifier and Type Method Description MutableSet<UnsortedSetIterable<T>>AbstractMutableSet. powerSet()MutableSet<UnsortedSetIterable<T>>MultiReaderUnifiedSet. powerSet()MutableSet<UnsortedSetIterable<T>>MultiReaderUnifiedSet.UntouchableMutableSet. powerSet()MutableSet<UnsortedSetIterable<T>>SetAdapter. powerSet()MutableSet<UnsortedSetIterable<T>>SynchronizedMutableSet. powerSet()MutableSet<UnsortedSetIterable<T>>UnmodifiableMutableSet. powerSet() -
Uses of UnsortedSetIterable in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement UnsortedSetIterable Modifier and Type Class Description classBoxedMutableBooleanSetA boxed view of aMutableBooleanSet.classBoxedMutableByteSetA boxed view of aMutableByteSet.classBoxedMutableCharSetA boxed view of aMutableCharSet.classBoxedMutableDoubleSetA boxed view of aMutableDoubleSet.classBoxedMutableFloatSetA boxed view of aMutableFloatSet.classBoxedMutableIntSetA boxed view of aMutableIntSet.classBoxedMutableLongSetA boxed view of aMutableLongSet.classBoxedMutableShortSetA boxed view of aMutableShortSet. -
Uses of UnsortedSetIterable in org.eclipse.collections.impl.set.strategy.immutable
Classes in org.eclipse.collections.impl.set.strategy.immutable that implement UnsortedSetIterable Modifier and Type Class Description (package private) classImmutableEmptySetWithHashingStrategy<T>This is a zero elementImmutableUnifiedSetWithHashingStrategywhich is created by calling the HashingStrategySets.immutable.empty() method.(package private) classImmutableUnifiedSetWithHashingStrategy<T> -
Uses of UnsortedSetIterable in org.eclipse.collections.impl.set.strategy.mutable
Classes in org.eclipse.collections.impl.set.strategy.mutable that implement UnsortedSetIterable Modifier and Type Class Description classUnifiedSetWithHashingStrategy<T>
-