Uses of Interface
org.eclipse.collections.api.tuple.primitive.ByteObjectPair
-
Packages that use ByteObjectPair 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. -
-
Uses of ByteObjectPair in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return types with arguments of type ByteObjectPair Modifier and Type Method Description default <T> ListIterable<ByteObjectPair<T>>ByteList. zip(Iterable<T> iterable)Returns aListIterableformed from thisByteListand aListIterableby combining corresponding elements in pairs.default <T> ImmutableList<ByteObjectPair<T>>ImmutableByteList. zip(Iterable<T> iterable)Returns anImmutableListformed from thisImmutableByteListand aListIterableby combining corresponding elements in pairs.default <T> MutableList<ByteObjectPair<T>>MutableByteList. zip(Iterable<T> list)Returns aMutableListformed from thisMutableByteListand aListIterableby combining corresponding elements in pairs. -
Uses of ByteObjectPair in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return types with arguments of type ByteObjectPair Modifier and Type Method Description RichIterable<ByteObjectPair<V>>ByteObjectMap. keyValuesView()Returns a view of the key/value pairs in this map.Methods in org.eclipse.collections.api.map.primitive with parameters of type ByteObjectPair Modifier and Type Method Description default VMutableByteObjectMap. putPair(ByteObjectPair<V> keyValuePair)This method allows MutableByteObjectMap the ability to add an element in the form ofByteObjectPair<V>.Method parameters in org.eclipse.collections.api.map.primitive with type arguments of type ByteObjectPair Modifier and Type Method Description default MutableByteObjectMap<V>MutableByteObjectMap. withAllKeyValues(Iterable<ByteObjectPair<V>> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.
-