Uses of Interface
org.eclipse.collections.api.tuple.Twin
-
Packages that use Twin Package Description org.eclipse.collections.api.collection org.eclipse.collections.api.tuple org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeList
interface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet
.org.eclipse.collections.impl.set.strategy.mutable This package contains implementations of sets with user definedHashingStrategy
s.org.eclipse.collections.impl.test This package containsSerializeTestHelper
andVerify
classes.org.eclipse.collections.impl.tuple org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections. -
-
Uses of Twin in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return Twin Modifier and Type Method Description <P> Twin<MutableList<T>>
MutableCollection. selectAndRejectWith(Predicate2<? super T,? super P> predicate, P parameter)
Deprecated.since 6.0 useRichIterable.partitionWith(Predicate2, Object)
instead. -
Uses of Twin in org.eclipse.collections.api.tuple
Methods in org.eclipse.collections.api.tuple that return Twin Modifier and Type Method Description Twin<T>
Twin. swap()
-
Uses of Twin in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable that return Twin Modifier and Type Method Description <P> Twin<MutableList<T>>
AbstractMutableBagIterable. selectAndRejectWith(Predicate2<? super T,? super P> predicate, P parameter)
-
Uses of Twin in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable that return Twin Modifier and Type Method Description <P> Twin<MutableList<T>>
AbstractCollectionAdapter. selectAndRejectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> Twin<MutableList<T>>
AbstractMultiReaderMutableCollection. selectAndRejectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> Twin<MutableList<T>>
AbstractMultiReaderMutableCollection.UntouchableMutableCollection. selectAndRejectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> Twin<MutableList<T>>
AbstractMutableCollection. selectAndRejectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> Twin<MutableList<T>>
AbstractSynchronizedMutableCollection. selectAndRejectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> Twin<MutableList<T>>
AbstractUnmodifiableMutableCollection. selectAndRejectWith(Predicate2<? super T,? super P> predicate, P parameter)
-
Uses of Twin in org.eclipse.collections.impl.list.fixed
Methods in org.eclipse.collections.impl.list.fixed that return Twin Modifier and Type Method Description <P> Twin<MutableList<T>>
AbstractArrayAdapter. selectAndRejectWith(Predicate2<? super T,? super P> predicate, P parameter)
-
Uses of Twin in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return Twin Modifier and Type Method Description <P> Twin<MutableList<T>>
AbstractMutableList. selectAndRejectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> Twin<MutableList<T>>
FastList. selectAndRejectWith(Predicate2<? super T,? super P> predicate, P parameter)
-
Uses of Twin in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable that return Twin Modifier and Type Method Description <P> Twin<MutableList<T>>
UnifiedSet. selectAndRejectWith(Predicate2<? super T,? super P> predicate, P parameter)
-
Uses of Twin in org.eclipse.collections.impl.set.strategy.mutable
Methods in org.eclipse.collections.impl.set.strategy.mutable that return Twin Modifier and Type Method Description <P> Twin<MutableList<T>>
UnifiedSetWithHashingStrategy. selectAndRejectWith(Predicate2<? super T,? super P> predicate, P parameter)
-
Uses of Twin in org.eclipse.collections.impl.test
Methods in org.eclipse.collections.impl.test with parameters of type Twin Modifier and Type Method Description private java.lang.String
ClassComparer. classNames(Twin<java.lang.Class<?>> classPair)
private void
ClassComparer. output(Twin<java.lang.Class<?>> classPair, java.lang.String operation, RichIterable<java.lang.String> strings)
-
Uses of Twin in org.eclipse.collections.impl.tuple
Classes in org.eclipse.collections.impl.tuple that implement Twin Modifier and Type Class Description (package private) class
TwinImpl<T>
A TwinImpl is a PairImpl that has the same type for both items.Methods in org.eclipse.collections.impl.tuple that return Twin Modifier and Type Method Description static <T> Twin<T>
Tuples. identicalTwin(T each)
static <T> Twin<T>
Tuples. twin(T one, T two)
-
Uses of Twin in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return Twin Modifier and Type Method Description static <T,P>
Twin<MutableList<T>>ArrayIterate. selectAndRejectWith(T[] objectArray, Predicate2<? super T,? super P> predicate, P parameter)
Deprecated.since 6.0 useRichIterable.partitionWith(Predicate2, Object)
instead.static <T,P>
Twin<MutableList<T>>ArrayListIterate. selectAndRejectWith(java.util.ArrayList<T> list, Predicate2<? super T,? super P> predicate, P parameter)
static <T,IV>
Twin<MutableList<T>>Iterate. selectAndRejectWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super IV> predicate, IV injectedValue)
Filters a collection into two separate collections based on a predicate returned via a Twin.static <T,IV>
Twin<MutableList<T>>ListIterate. selectAndRejectWith(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)
static Twin<java.lang.String>
StringIterate. splitAtIndex(java.lang.String aString, int index)
-
Uses of Twin in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return Twin Modifier and Type Method Description static <T,P>
Twin<MutableList<T>>InternalArrayIterate. selectAndRejectWith(T[] objectArray, int size, Predicate2<? super T,? super P> predicate, P parameter)
Deprecated.since 6.0 useRichIterable.partitionWith(Predicate2, Object)
instead.static <T,IV>
Twin<MutableList<T>>IterableIterate. selectAndRejectWith(java.lang.Iterable<T> iterable, Predicate2<? super T,? super IV> predicate, IV injectedValue)
static <T,P>
Twin<MutableList<T>>IteratorIterate. selectAndRejectWith(java.util.Iterator<T> iterator, Predicate2<? super T,? super P> predicate, P parameter)
static <T,IV>
Twin<MutableList<T>>RandomAccessListIterate. selectAndRejectWith(java.util.List<T> list, Predicate2<? super T,? super IV> predicate, IV injectedValue)
-