public final class SetAdapter<T> extends AbstractCollectionAdapter<T> implements Serializable, org.eclipse.collections.api.set.MutableSet<T>
To create a new wrapper around an existing Set instance, use the adapt(Set) factory method.
| Modifier and Type | Method and Description |
|---|---|
static <E> org.eclipse.collections.api.set.MutableSet<E> |
adapt(Set<E> set) |
org.eclipse.collections.api.set.ParallelUnsortedSetIterable<T> |
asParallel(ExecutorService executorService,
int batchSize) |
org.eclipse.collections.api.set.MutableSet<T> |
asSynchronized() |
org.eclipse.collections.api.set.MutableSet<T> |
asUnmodifiable() |
<B> org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.tuple.Pair<T,B>> |
cartesianProduct(org.eclipse.collections.api.set.SetIterable<B> set) |
org.eclipse.collections.api.set.MutableSet<T> |
clone() |
<V> org.eclipse.collections.api.set.MutableSet<V> |
collect(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
org.eclipse.collections.api.set.primitive.MutableBooleanSet |
collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T> booleanFunction) |
org.eclipse.collections.api.set.primitive.MutableByteSet |
collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T> byteFunction) |
org.eclipse.collections.api.set.primitive.MutableCharSet |
collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T> charFunction) |
org.eclipse.collections.api.set.primitive.MutableDoubleSet |
collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> doubleFunction) |
org.eclipse.collections.api.set.primitive.MutableFloatSet |
collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> floatFunction) |
<V> org.eclipse.collections.api.set.MutableSet<V> |
collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
org.eclipse.collections.api.set.primitive.MutableIntSet |
collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> intFunction) |
org.eclipse.collections.api.set.primitive.MutableLongSet |
collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> longFunction) |
org.eclipse.collections.api.set.primitive.MutableShortSet |
collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T> shortFunction) |
<P,V> org.eclipse.collections.api.set.MutableSet<V> |
collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends V> function,
P parameter) |
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> collection) |
org.eclipse.collections.api.set.MutableSet<T> |
difference(org.eclipse.collections.api.set.SetIterable<? extends T> subtrahendSet) |
<R extends Set<T>> |
differenceInto(org.eclipse.collections.api.set.SetIterable<? extends T> subtrahendSet,
R targetSet) |
boolean |
equals(Object obj) |
<V> org.eclipse.collections.api.set.MutableSet<V> |
flatCollect(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
<V> UnifiedSetMultimap<V,T> |
groupBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
<V> UnifiedSetMultimap<V,T> |
groupByEach(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
int |
hashCode() |
org.eclipse.collections.api.set.MutableSet<T> |
intersect(org.eclipse.collections.api.set.SetIterable<? extends T> set) |
<R extends Set<T>> |
intersectInto(org.eclipse.collections.api.set.SetIterable<? extends T> set,
R targetSet) |
boolean |
isProperSubsetOf(org.eclipse.collections.api.set.SetIterable<? extends T> candidateSuperset) |
boolean |
isSubsetOf(org.eclipse.collections.api.set.SetIterable<? extends T> candidateSuperset) |
org.eclipse.collections.api.set.MutableSet<T> |
newEmpty()
Deprecated.
use
UnifiedSet.newSet() instead (inlineable) |
org.eclipse.collections.api.partition.set.PartitionMutableSet<T> |
partition(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> org.eclipse.collections.api.partition.set.PartitionMutableSet<T> |
partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
org.eclipse.collections.api.set.MutableSet<org.eclipse.collections.api.set.UnsortedSetIterable<T>> |
powerSet() |
org.eclipse.collections.api.set.MutableSet<T> |
reject(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> org.eclipse.collections.api.set.MutableSet<T> |
rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
boolean |
removeAllIterable(Iterable<?> iterable) |
org.eclipse.collections.api.set.MutableSet<T> |
select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<S> org.eclipse.collections.api.set.MutableSet<S> |
selectInstancesOf(Class<S> clazz) |
<P> org.eclipse.collections.api.set.MutableSet<T> |
selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
org.eclipse.collections.api.set.MutableSet<T> |
symmetricDifference(org.eclipse.collections.api.set.SetIterable<? extends T> setB) |
<R extends Set<T>> |
symmetricDifferenceInto(org.eclipse.collections.api.set.SetIterable<? extends T> set,
R targetSet) |
org.eclipse.collections.api.set.MutableSet<T> |
tap(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
org.eclipse.collections.api.set.ImmutableSet<T> |
toImmutable() |
org.eclipse.collections.api.set.MutableSet<T> |
union(org.eclipse.collections.api.set.SetIterable<? extends T> set) |
<R extends Set<T>> |
unionInto(org.eclipse.collections.api.set.SetIterable<? extends T> set,
R targetSet) |
SetAdapter<T> |
with(T... elements) |
SetAdapter<T> |
with(T element) |
SetAdapter<T> |
with(T element1,
T element2) |
SetAdapter<T> |
with(T element1,
T element2,
T element3) |
SetAdapter<T> |
withAll(Iterable<? extends T> elements) |
SetAdapter<T> |
without(T element) |
SetAdapter<T> |
withoutAll(Iterable<? extends T> elements) |
<S> org.eclipse.collections.api.set.MutableSet<org.eclipse.collections.api.tuple.Pair<T,S>> |
zip(Iterable<S> that)
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
org.eclipse.collections.api.set.MutableSet<org.eclipse.collections.api.tuple.Pair<T,Integer>> |
zipWithIndex()
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
add, addAll, addAllIterable, aggregateBy, aggregateInPlaceBy, allSatisfy, allSatisfyWith, anySatisfy, anySatisfyWith, appendString, appendString, appendString, asLazy, chunk, clear, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, containsAllArguments, containsAllIterable, count, countWith, detect, detectIfNone, detectWith, detectWithIfNone, each, flatCollect, forEach, forEachWith, forEachWithIndex, getFirst, getLast, groupBy, groupByEach, groupByUniqueKey, groupByUniqueKey, injectInto, injectInto, injectInto, injectInto, injectInto, injectIntoWith, isEmpty, iterator, makeString, makeString, makeString, max, max, maxBy, min, min, minBy, noneSatisfy, noneSatisfyWith, notEmpty, reject, rejectWith, remove, removeAll, removeIf, removeIfWith, retainAll, retainAllIterable, select, selectAndRejectWith, selectWith, size, sumByDouble, sumByFloat, sumByInt, sumByLong, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toArray, toArray, toBag, toList, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedList, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, toString, zip, zipWithIndexaddAllIterable, aggregateBy, aggregateInPlaceBy, groupByUniqueKey, injectIntoWith, removeIf, removeIfWith, retainAllIterable, selectAndRejectWithallSatisfy, allSatisfyWith, anySatisfy, anySatisfyWith, appendString, appendString, appendString, asLazy, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, containsAllArguments, containsAllIterable, count, countWith, detect, detectIfNone, detectWith, detectWithIfNone, each, flatCollect, getFirst, getLast, groupBy, groupByEach, groupByUniqueKey, injectInto, injectInto, injectInto, injectInto, injectInto, isEmpty, makeString, makeString, makeString, max, max, maxBy, min, min, minBy, noneSatisfy, noneSatisfyWith, notEmpty, reject, rejectWith, select, selectWith, size, sumByDouble, sumByFloat, sumByInt, sumByLong, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toArray, toArray, toBag, toList, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedList, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, toString, zip, zipWithIndexforEach, forEachWith, forEachWithIndexadd, addAll, clear, isEmpty, iterator, remove, removeAll, retainAll, size, spliterator, toArray, toArrayparallelStream, removeIf, streampublic org.eclipse.collections.api.set.MutableSet<T> asUnmodifiable()
public org.eclipse.collections.api.set.MutableSet<T> asSynchronized()
public org.eclipse.collections.api.set.ImmutableSet<T> toImmutable()
toImmutable in interface org.eclipse.collections.api.collection.MutableCollection<T>toImmutable in interface org.eclipse.collections.api.set.MutableSet<T>toImmutable in interface org.eclipse.collections.api.set.SetIterable<T>toImmutable in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public static <E> org.eclipse.collections.api.set.MutableSet<E> adapt(Set<E> set)
public org.eclipse.collections.api.set.MutableSet<T> clone()
public boolean contains(Object o)
contains in interface Collection<T>contains in interface Set<T>contains in interface org.eclipse.collections.api.RichIterable<T>contains in class AbstractCollectionAdapter<T>public boolean containsAll(Collection<?> collection)
containsAll in interface Collection<T>containsAll in interface Set<T>containsAll in interface org.eclipse.collections.api.RichIterable<T>containsAll in class AbstractCollectionAdapter<T>public boolean equals(Object obj)
public int hashCode()
public SetAdapter<T> with(T element)
public SetAdapter<T> with(T element1, T element2)
public SetAdapter<T> with(T element1, T element2, T element3)
public SetAdapter<T> with(T... elements)
public SetAdapter<T> without(T element)
public SetAdapter<T> withAll(Iterable<? extends T> elements)
public SetAdapter<T> withoutAll(Iterable<? extends T> elements)
@Deprecated public org.eclipse.collections.api.set.MutableSet<T> newEmpty()
UnifiedSet.newSet() instead (inlineable)public org.eclipse.collections.api.set.MutableSet<T> tap(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure)
tap in interface org.eclipse.collections.api.collection.MutableCollection<T>tap in interface org.eclipse.collections.api.RichIterable<T>tap in interface org.eclipse.collections.api.set.MutableSet<T>tap in interface org.eclipse.collections.api.set.MutableSetIterable<T>tap in class AbstractCollectionAdapter<T>public org.eclipse.collections.api.set.MutableSet<T> select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
select in interface org.eclipse.collections.api.collection.MutableCollection<T>select in interface org.eclipse.collections.api.RichIterable<T>select in interface org.eclipse.collections.api.set.MutableSet<T>select in interface org.eclipse.collections.api.set.MutableSetIterable<T>select in interface org.eclipse.collections.api.set.SetIterable<T>select in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>select in class AbstractCollectionAdapter<T>public org.eclipse.collections.api.set.MutableSet<T> reject(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
reject in interface org.eclipse.collections.api.collection.MutableCollection<T>reject in interface org.eclipse.collections.api.RichIterable<T>reject in interface org.eclipse.collections.api.set.MutableSet<T>reject in interface org.eclipse.collections.api.set.MutableSetIterable<T>reject in interface org.eclipse.collections.api.set.SetIterable<T>reject in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>reject in class AbstractCollectionAdapter<T>public org.eclipse.collections.api.partition.set.PartitionMutableSet<T> partition(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
partition in interface org.eclipse.collections.api.collection.MutableCollection<T>partition in interface org.eclipse.collections.api.RichIterable<T>partition in interface org.eclipse.collections.api.set.MutableSet<T>partition in interface org.eclipse.collections.api.set.MutableSetIterable<T>partition in interface org.eclipse.collections.api.set.SetIterable<T>partition in class AbstractCollectionAdapter<T>public <P> org.eclipse.collections.api.partition.set.PartitionMutableSet<T> partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
partitionWith in interface org.eclipse.collections.api.collection.MutableCollection<T>partitionWith in interface org.eclipse.collections.api.RichIterable<T>partitionWith in interface org.eclipse.collections.api.set.MutableSet<T>partitionWith in interface org.eclipse.collections.api.set.MutableSetIterable<T>partitionWith in interface org.eclipse.collections.api.set.SetIterable<T>partitionWith in class AbstractCollectionAdapter<T>public <S> org.eclipse.collections.api.set.MutableSet<S> selectInstancesOf(Class<S> clazz)
selectInstancesOf in interface org.eclipse.collections.api.collection.MutableCollection<T>selectInstancesOf in interface org.eclipse.collections.api.RichIterable<T>selectInstancesOf in interface org.eclipse.collections.api.set.MutableSet<T>selectInstancesOf in interface org.eclipse.collections.api.set.MutableSetIterable<T>selectInstancesOf in interface org.eclipse.collections.api.set.SetIterable<T>selectInstancesOf in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>selectInstancesOf in class AbstractCollectionAdapter<T>public <V> org.eclipse.collections.api.set.MutableSet<V> collect(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
collect in interface org.eclipse.collections.api.collection.MutableCollection<T>collect in interface org.eclipse.collections.api.RichIterable<T>collect in interface org.eclipse.collections.api.set.MutableSet<T>collect in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>collect in class AbstractCollectionAdapter<T>public org.eclipse.collections.api.set.primitive.MutableBooleanSet collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T> booleanFunction)
collectBoolean in interface org.eclipse.collections.api.collection.MutableCollection<T>collectBoolean in interface org.eclipse.collections.api.RichIterable<T>collectBoolean in interface org.eclipse.collections.api.set.MutableSet<T>collectBoolean in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>collectBoolean in class AbstractCollectionAdapter<T>public org.eclipse.collections.api.set.primitive.MutableByteSet collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T> byteFunction)
collectByte in interface org.eclipse.collections.api.collection.MutableCollection<T>collectByte in interface org.eclipse.collections.api.RichIterable<T>collectByte in interface org.eclipse.collections.api.set.MutableSet<T>collectByte in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>collectByte in class AbstractCollectionAdapter<T>public org.eclipse.collections.api.set.primitive.MutableCharSet collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T> charFunction)
collectChar in interface org.eclipse.collections.api.collection.MutableCollection<T>collectChar in interface org.eclipse.collections.api.RichIterable<T>collectChar in interface org.eclipse.collections.api.set.MutableSet<T>collectChar in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>collectChar in class AbstractCollectionAdapter<T>public org.eclipse.collections.api.set.primitive.MutableDoubleSet collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> doubleFunction)
collectDouble in interface org.eclipse.collections.api.collection.MutableCollection<T>collectDouble in interface org.eclipse.collections.api.RichIterable<T>collectDouble in interface org.eclipse.collections.api.set.MutableSet<T>collectDouble in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>collectDouble in class AbstractCollectionAdapter<T>public org.eclipse.collections.api.set.primitive.MutableFloatSet collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> floatFunction)
collectFloat in interface org.eclipse.collections.api.collection.MutableCollection<T>collectFloat in interface org.eclipse.collections.api.RichIterable<T>collectFloat in interface org.eclipse.collections.api.set.MutableSet<T>collectFloat in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>collectFloat in class AbstractCollectionAdapter<T>public org.eclipse.collections.api.set.primitive.MutableIntSet collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> intFunction)
collectInt in interface org.eclipse.collections.api.collection.MutableCollection<T>collectInt in interface org.eclipse.collections.api.RichIterable<T>collectInt in interface org.eclipse.collections.api.set.MutableSet<T>collectInt in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>collectInt in class AbstractCollectionAdapter<T>public org.eclipse.collections.api.set.primitive.MutableLongSet collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> longFunction)
collectLong in interface org.eclipse.collections.api.collection.MutableCollection<T>collectLong in interface org.eclipse.collections.api.RichIterable<T>collectLong in interface org.eclipse.collections.api.set.MutableSet<T>collectLong in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>collectLong in class AbstractCollectionAdapter<T>public org.eclipse.collections.api.set.primitive.MutableShortSet collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T> shortFunction)
collectShort in interface org.eclipse.collections.api.collection.MutableCollection<T>collectShort in interface org.eclipse.collections.api.RichIterable<T>collectShort in interface org.eclipse.collections.api.set.MutableSet<T>collectShort in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>collectShort in class AbstractCollectionAdapter<T>public <V> org.eclipse.collections.api.set.MutableSet<V> flatCollect(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function)
flatCollect in interface org.eclipse.collections.api.collection.MutableCollection<T>flatCollect in interface org.eclipse.collections.api.RichIterable<T>flatCollect in interface org.eclipse.collections.api.set.MutableSet<T>flatCollect in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>flatCollect in class AbstractCollectionAdapter<T>public <V> org.eclipse.collections.api.set.MutableSet<V> collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate, org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
collectIf in interface org.eclipse.collections.api.collection.MutableCollection<T>collectIf in interface org.eclipse.collections.api.RichIterable<T>collectIf in interface org.eclipse.collections.api.set.MutableSet<T>collectIf in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>collectIf in class AbstractCollectionAdapter<T>public <V> UnifiedSetMultimap<V,T> groupBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
groupBy in interface org.eclipse.collections.api.collection.MutableCollection<T>groupBy in interface org.eclipse.collections.api.RichIterable<T>groupBy in interface org.eclipse.collections.api.set.MutableSet<T>groupBy in interface org.eclipse.collections.api.set.MutableSetIterable<T>groupBy in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>groupBy in class AbstractCollectionAdapter<T>public <V> UnifiedSetMultimap<V,T> groupByEach(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function)
groupByEach in interface org.eclipse.collections.api.collection.MutableCollection<T>groupByEach in interface org.eclipse.collections.api.RichIterable<T>groupByEach in interface org.eclipse.collections.api.set.MutableSet<T>groupByEach in interface org.eclipse.collections.api.set.MutableSetIterable<T>groupByEach in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>groupByEach in class AbstractCollectionAdapter<T>public <P> org.eclipse.collections.api.set.MutableSet<T> selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
selectWith in interface org.eclipse.collections.api.collection.MutableCollection<T>selectWith in interface org.eclipse.collections.api.RichIterable<T>selectWith in interface org.eclipse.collections.api.set.MutableSet<T>selectWith in interface org.eclipse.collections.api.set.MutableSetIterable<T>selectWith in interface org.eclipse.collections.api.set.SetIterable<T>selectWith in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>selectWith in class AbstractCollectionAdapter<T>public <P> org.eclipse.collections.api.set.MutableSet<T> rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
rejectWith in interface org.eclipse.collections.api.collection.MutableCollection<T>rejectWith in interface org.eclipse.collections.api.RichIterable<T>rejectWith in interface org.eclipse.collections.api.set.MutableSet<T>rejectWith in interface org.eclipse.collections.api.set.MutableSetIterable<T>rejectWith in interface org.eclipse.collections.api.set.SetIterable<T>rejectWith in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>rejectWith in class AbstractCollectionAdapter<T>public <P,V> org.eclipse.collections.api.set.MutableSet<V> collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends V> function, P parameter)
collectWith in interface org.eclipse.collections.api.collection.MutableCollection<T>collectWith in interface org.eclipse.collections.api.RichIterable<T>collectWith in interface org.eclipse.collections.api.set.MutableSet<T>collectWith in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>collectWith in class AbstractCollectionAdapter<T>@Deprecated public <S> org.eclipse.collections.api.set.MutableSet<org.eclipse.collections.api.tuple.Pair<T,S>> zip(Iterable<S> that)
OrderedIterable.zip(Iterable) instead.zip in interface org.eclipse.collections.api.collection.MutableCollection<T>zip in interface org.eclipse.collections.api.RichIterable<T>zip in interface org.eclipse.collections.api.set.MutableSet<T>zip in interface org.eclipse.collections.api.set.MutableSetIterable<T>zip in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>zip in class AbstractCollectionAdapter<T>@Deprecated public org.eclipse.collections.api.set.MutableSet<org.eclipse.collections.api.tuple.Pair<T,Integer>> zipWithIndex()
OrderedIterable.zipWithIndex() instead.zipWithIndex in interface org.eclipse.collections.api.collection.MutableCollection<T>zipWithIndex in interface org.eclipse.collections.api.RichIterable<T>zipWithIndex in interface org.eclipse.collections.api.set.MutableSet<T>zipWithIndex in interface org.eclipse.collections.api.set.MutableSetIterable<T>zipWithIndex in interface org.eclipse.collections.api.set.SetIterable<T>zipWithIndex in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>zipWithIndex in class AbstractCollectionAdapter<T>public boolean removeAllIterable(Iterable<?> iterable)
removeAllIterable in interface org.eclipse.collections.api.collection.MutableCollection<T>removeAllIterable in class AbstractCollectionAdapter<T>public org.eclipse.collections.api.set.MutableSet<T> union(org.eclipse.collections.api.set.SetIterable<? extends T> set)
public <R extends Set<T>> R unionInto(org.eclipse.collections.api.set.SetIterable<? extends T> set, R targetSet)
unionInto in interface org.eclipse.collections.api.set.SetIterable<T>public org.eclipse.collections.api.set.MutableSet<T> intersect(org.eclipse.collections.api.set.SetIterable<? extends T> set)
public <R extends Set<T>> R intersectInto(org.eclipse.collections.api.set.SetIterable<? extends T> set, R targetSet)
intersectInto in interface org.eclipse.collections.api.set.SetIterable<T>public org.eclipse.collections.api.set.MutableSet<T> difference(org.eclipse.collections.api.set.SetIterable<? extends T> subtrahendSet)
public <R extends Set<T>> R differenceInto(org.eclipse.collections.api.set.SetIterable<? extends T> subtrahendSet, R targetSet)
differenceInto in interface org.eclipse.collections.api.set.SetIterable<T>public org.eclipse.collections.api.set.MutableSet<T> symmetricDifference(org.eclipse.collections.api.set.SetIterable<? extends T> setB)
public <R extends Set<T>> R symmetricDifferenceInto(org.eclipse.collections.api.set.SetIterable<? extends T> set, R targetSet)
symmetricDifferenceInto in interface org.eclipse.collections.api.set.SetIterable<T>public boolean isSubsetOf(org.eclipse.collections.api.set.SetIterable<? extends T> candidateSuperset)
isSubsetOf in interface org.eclipse.collections.api.set.SetIterable<T>public boolean isProperSubsetOf(org.eclipse.collections.api.set.SetIterable<? extends T> candidateSuperset)
isProperSubsetOf in interface org.eclipse.collections.api.set.SetIterable<T>public org.eclipse.collections.api.set.MutableSet<org.eclipse.collections.api.set.UnsortedSetIterable<T>> powerSet()
public <B> org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.tuple.Pair<T,B>> cartesianProduct(org.eclipse.collections.api.set.SetIterable<B> set)
cartesianProduct in interface org.eclipse.collections.api.set.SetIterable<T>public org.eclipse.collections.api.set.ParallelUnsortedSetIterable<T> asParallel(ExecutorService executorService, int batchSize)
Copyright © 2004–2018. All rights reserved.