Uses of Interface
org.eclipse.collections.api.tuple.primitive.ByteBytePair
-
Packages that use ByteBytePair Package Description org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.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.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.impl.factory.primitive This package contains static utilities for creating immutable primitive collection factories.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.set.primitive org.eclipse.collections.impl.tuple.primitive -
-
Uses of ByteBytePair in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return types with arguments of type ByteBytePair Modifier and Type Method Description default ListIterable<ByteBytePair>
ByteList. zipByte(ByteIterable iterable)
Returns aListIterable
formed from thisByteList
and anotherByteList
by combining corresponding elements in pairs.default ImmutableList<ByteBytePair>
ImmutableByteList. zipByte(ByteIterable iterable)
Returns anImmutableList
formed from thisImmutableByteList
and anotherByteList
by combining corresponding elements in pairs.default MutableList<ByteBytePair>
MutableByteList. zipByte(ByteIterable iterable)
Returns aMutableList
formed from thisMutableByteList
and anotherByteList
by combining corresponding elements in pairs. -
Uses of ByteBytePair in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return types with arguments of type ByteBytePair Modifier and Type Method Description RichIterable<ByteBytePair>
ByteByteMap. keyValuesView()
Returns a view of the key/value pairs in this map.Methods in org.eclipse.collections.api.map.primitive with parameters of type ByteBytePair Modifier and Type Method Description default void
MutableByteByteMap. putPair(ByteBytePair keyValuePair)
This method allows MutableByteByteMap the ability to add an element in the form of ByteBytePair.Method parameters in org.eclipse.collections.api.map.primitive with type arguments of type ByteBytePair Modifier and Type Method Description default MutableByteByteMap
MutableByteByteMap. withAllKeyValues(java.lang.Iterable<ByteBytePair> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map. -
Uses of ByteBytePair in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return types with arguments of type ByteBytePair Modifier and Type Method Description LazyIterable<ByteBytePair>
ByteSet. cartesianProduct(ByteSet set)
Returns the set whose members are all possible ordered pairs (a, b) where a is a member ofthis
and b is a member ofset
. -
Uses of ByteBytePair in org.eclipse.collections.impl.factory.primitive
Methods in org.eclipse.collections.impl.factory.primitive that return types with arguments of type ByteBytePair Modifier and Type Method Description static <A,B>
LazyIterable<ByteBytePair>ByteSets. cartesianProduct(ByteSet set1, ByteSet set2)
-
Uses of ByteBytePair in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return types with arguments of type ByteBytePair Modifier and Type Method Description ImmutableList<ByteBytePair>
ImmutableByteArrayList. zipByte(ByteIterable iterable)
ImmutableList<ByteBytePair>
ImmutableByteEmptyList. zipByte(ByteIterable iterable)
ImmutableList<ByteBytePair>
ImmutableByteSingletonList. zipByte(ByteIterable iterable)
-
Uses of ByteBytePair in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive that return types with arguments of type ByteBytePair Modifier and Type Method Description MutableList<ByteBytePair>
ByteArrayList. zipByte(ByteIterable iterable)
MutableList<ByteBytePair>
SynchronizedByteList. zipByte(ByteIterable iterable)
MutableList<ByteBytePair>
UnmodifiableByteList. zipByte(ByteIterable iterable)
-
Uses of ByteBytePair in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return types with arguments of type ByteBytePair Modifier and Type Method Description RichIterable<ByteBytePair>
ImmutableByteByteEmptyMap. keyValuesView()
RichIterable<ByteBytePair>
ImmutableByteByteHashMap. keyValuesView()
RichIterable<ByteBytePair>
ImmutableByteByteSingletonMap. keyValuesView()
-
Uses of ByteBytePair in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ByteBytePair Modifier and Type Method Description ByteBytePair
ByteByteHashMap.KeyValuesView.InternalKeyValuesIterator. next()
Methods in org.eclipse.collections.impl.map.mutable.primitive that return types with arguments of type ByteBytePair Modifier and Type Method Description LazyIterable<ByteBytePair>
AbstractMutableByteKeySet. cartesianProduct(ByteSet set)
java.util.Iterator<ByteBytePair>
ByteByteHashMap.KeyValuesView. iterator()
RichIterable<ByteBytePair>
ByteByteHashMap. keyValuesView()
RichIterable<ByteBytePair>
SynchronizedByteByteMap. keyValuesView()
RichIterable<ByteBytePair>
UnmodifiableByteByteMap. keyValuesView()
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ByteBytePair Modifier and Type Method Description void
SynchronizedByteByteMap. putPair(ByteBytePair keyValuePair)
void
UnmodifiableByteByteMap. putPair(ByteBytePair keyValuePair)
Method parameters in org.eclipse.collections.impl.map.mutable.primitive with type arguments of type ByteBytePair Modifier and Type Method Description void
ByteByteHashMap.KeyValuesView. each(Procedure<? super ByteBytePair> procedure)
<P> void
ByteByteHashMap.KeyValuesView. forEachWith(Procedure2<? super ByteBytePair,? super P> procedure, P parameter)
void
ByteByteHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ByteBytePair> objectIntProcedure)
-
Uses of ByteBytePair in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return types with arguments of type ByteBytePair Modifier and Type Method Description LazyIterable<ByteBytePair>
ImmutableByteEmptySet. cartesianProduct(ByteSet set)
LazyIterable<ByteBytePair>
ImmutableByteSingletonSet. cartesianProduct(ByteSet set)
-
Uses of ByteBytePair in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive that return types with arguments of type ByteBytePair Modifier and Type Method Description LazyIterable<ByteBytePair>
ByteHashSet. cartesianProduct(ByteSet set)
LazyIterable<ByteBytePair>
ByteHashSet.ImmutableByteHashSet. cartesianProduct(ByteSet set)
LazyIterable<ByteBytePair>
SynchronizedByteSet. cartesianProduct(ByteSet set)
LazyIterable<ByteBytePair>
UnmodifiableByteSet. cartesianProduct(ByteSet set)
-
Uses of ByteBytePair in org.eclipse.collections.impl.set.primitive
Methods in org.eclipse.collections.impl.set.primitive that return types with arguments of type ByteBytePair Modifier and Type Method Description LazyIterable<ByteBytePair>
AbstractByteSet. cartesianProduct(ByteSet set)
-
Uses of ByteBytePair in org.eclipse.collections.impl.tuple.primitive
Classes in org.eclipse.collections.impl.tuple.primitive that implement ByteBytePair Modifier and Type Class Description class
ByteBytePairImpl
This file was automatically generated from template file primitivePrimitivePairImpl.stgMethods in org.eclipse.collections.impl.tuple.primitive that return ByteBytePair Modifier and Type Method Description static ByteBytePair
PrimitiveTuples. pair(byte one, byte two)
Methods in org.eclipse.collections.impl.tuple.primitive with parameters of type ByteBytePair Modifier and Type Method Description int
ByteBytePairImpl. compareTo(ByteBytePair that)
-