Uses of Interface
org.eclipse.collections.api.tuple.primitive.ByteIntPair
-
Packages that use ByteIntPair Package Description org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.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.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag 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.tuple.primitive -
-
Uses of ByteIntPair in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return types with arguments of type ByteIntPair Modifier and Type Method Description ListIterable<ByteIntPair>ByteBag. bottomOccurrences(int count)Returns thecountleast frequently occurring items.ImmutableList<ByteIntPair>ImmutableByteBag. bottomOccurrences(int count)Returns thecountleast frequently occurring items.MutableList<ByteIntPair>MutableByteBag. bottomOccurrences(int count)Returns thecountleast frequently occurring items.ListIterable<ByteIntPair>ByteBag. topOccurrences(int count)Returns thecountmost frequently occurring items.ImmutableList<ByteIntPair>ImmutableByteBag. topOccurrences(int count)Returns thecountmost frequently occurring items.MutableList<ByteIntPair>MutableByteBag. topOccurrences(int count)Returns thecountmost frequently occurring items. -
Uses of ByteIntPair in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return types with arguments of type ByteIntPair Modifier and Type Method Description RichIterable<ByteIntPair>ByteIntMap. keyValuesView()Returns a view of the key/value pairs in this map.Methods in org.eclipse.collections.api.map.primitive with parameters of type ByteIntPair Modifier and Type Method Description default voidMutableByteIntMap. putPair(ByteIntPair keyValuePair)This method allows MutableByteIntMap the ability to add an element in the form of ByteIntPair.Method parameters in org.eclipse.collections.api.map.primitive with type arguments of type ByteIntPair Modifier and Type Method Description default MutableByteIntMapMutableByteIntMap. withAllKeyValues(java.lang.Iterable<ByteIntPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map. -
Uses of ByteIntPair in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return types with arguments of type ByteIntPair Modifier and Type Method Description ImmutableList<ByteIntPair>ImmutableByteEmptyBag. bottomOccurrences(int count)ImmutableList<ByteIntPair>ImmutableByteHashBag. bottomOccurrences(int count)ImmutableList<ByteIntPair>ImmutableByteSingletonBag. bottomOccurrences(int count)ImmutableList<ByteIntPair>ImmutableByteEmptyBag. topOccurrences(int count)ImmutableList<ByteIntPair>ImmutableByteHashBag. topOccurrences(int count)ImmutableList<ByteIntPair>ImmutableByteSingletonBag. topOccurrences(int count) -
Uses of ByteIntPair in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive that return types with arguments of type ByteIntPair Modifier and Type Method Description MutableList<ByteIntPair>ByteHashBag. bottomOccurrences(int count)MutableList<ByteIntPair>SynchronizedByteBag. bottomOccurrences(int count)MutableList<ByteIntPair>UnmodifiableByteBag. bottomOccurrences(int count)protected MutableList<ByteIntPair>ByteHashBag. occurrencesSortingBy(int n, IntFunction<ByteIntPair> function, MutableList<ByteIntPair> returnWhenEmpty)protected MutableList<ByteIntPair>ByteHashBag. toListWithOccurrences()MutableList<ByteIntPair>ByteHashBag. topOccurrences(int count)MutableList<ByteIntPair>SynchronizedByteBag. topOccurrences(int count)MutableList<ByteIntPair>UnmodifiableByteBag. topOccurrences(int count)Method parameters in org.eclipse.collections.impl.bag.mutable.primitive with type arguments of type ByteIntPair Modifier and Type Method Description protected MutableList<ByteIntPair>ByteHashBag. occurrencesSortingBy(int n, IntFunction<ByteIntPair> function, MutableList<ByteIntPair> returnWhenEmpty)protected MutableList<ByteIntPair>ByteHashBag. occurrencesSortingBy(int n, IntFunction<ByteIntPair> function, MutableList<ByteIntPair> returnWhenEmpty) -
Uses of ByteIntPair in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return types with arguments of type ByteIntPair Modifier and Type Method Description RichIterable<ByteIntPair>ImmutableByteIntEmptyMap. keyValuesView()RichIterable<ByteIntPair>ImmutableByteIntHashMap. keyValuesView()RichIterable<ByteIntPair>ImmutableByteIntSingletonMap. keyValuesView() -
Uses of ByteIntPair in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ByteIntPair Modifier and Type Method Description ByteIntPairByteIntHashMap.KeyValuesView.InternalKeyValuesIterator. next()Methods in org.eclipse.collections.impl.map.mutable.primitive that return types with arguments of type ByteIntPair Modifier and Type Method Description java.util.Iterator<ByteIntPair>ByteIntHashMap.KeyValuesView. iterator()RichIterable<ByteIntPair>ByteIntHashMap. keyValuesView()RichIterable<ByteIntPair>SynchronizedByteIntMap. keyValuesView()RichIterable<ByteIntPair>UnmodifiableByteIntMap. keyValuesView()Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ByteIntPair Modifier and Type Method Description voidSynchronizedByteIntMap. putPair(ByteIntPair keyValuePair)voidUnmodifiableByteIntMap. putPair(ByteIntPair keyValuePair)Method parameters in org.eclipse.collections.impl.map.mutable.primitive with type arguments of type ByteIntPair Modifier and Type Method Description voidByteIntHashMap.KeyValuesView. each(Procedure<? super ByteIntPair> procedure)<P> voidByteIntHashMap.KeyValuesView. forEachWith(Procedure2<? super ByteIntPair,? super P> procedure, P parameter)voidByteIntHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super ByteIntPair> objectIntProcedure) -
Uses of ByteIntPair in org.eclipse.collections.impl.tuple.primitive
Classes in org.eclipse.collections.impl.tuple.primitive that implement ByteIntPair Modifier and Type Class Description classByteIntPairImplThis file was automatically generated from template file primitivePrimitivePairImpl.stgMethods in org.eclipse.collections.impl.tuple.primitive that return ByteIntPair Modifier and Type Method Description static ByteIntPairPrimitiveTuples. pair(byte one, int two)Methods in org.eclipse.collections.impl.tuple.primitive with parameters of type ByteIntPair Modifier and Type Method Description intByteIntPairImpl. compareTo(ByteIntPair that)
-