Uses of Interface
org.eclipse.collections.api.map.primitive.MutableByteByteMap
| Package | Description |
|---|---|
| org.eclipse.collections.api.factory.map.primitive | |
| 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.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
-
Uses of MutableByteByteMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableByteByteMap Modifier and Type Method Description MutableByteByteMapMutableByteByteMapFactory. empty()<T> MutableByteByteMapMutableByteByteMapFactory. from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableByteByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteByteMapMutableByteByteMapFactory. of()Same asMutableByteByteMapFactory.empty().MutableByteByteMapMutableByteByteMapFactory. ofAll(ByteByteMap map)MutableByteByteMapMutableByteByteMapFactory. ofInitialCapacity(int capacity)Same asMutableByteByteMapFactory.empty().MutableByteByteMapMutableByteByteMapFactory. with()Same asMutableByteByteMapFactory.empty().MutableByteByteMapMutableByteByteMapFactory. withAll(ByteByteMap map)MutableByteByteMapMutableByteByteMapFactory. withInitialCapacity(int capacity)Same asMutableByteByteMapFactory.empty(). -
Uses of MutableByteByteMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableByteByteMap Modifier and Type Method Description MutableByteByteMapMutableByteByteMap. asSynchronized()Returns a synchronized view of this map, delegating all operations to this map but ensuring only one caller has access to the map at a time.MutableByteByteMapMutableByteByteMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableByteByteMapMutableByteByteMap. flipUniqueValues()MutableByteByteMapMutableByteByteMap. reject(ByteBytePredicate predicate)MutableByteByteMapMutableByteByteMap. select(ByteBytePredicate predicate)default MutableByteByteMapMutableByteByteMap. withAllKeyValues(Iterable<ByteBytePair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableByteByteMapMutableByteByteMap. withKeyValue(byte key, byte value)Associates a value with the specified key.MutableByteByteMapMutableByteByteMap. withoutAllKeys(ByteIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableByteByteMapMutableByteByteMap. withoutKey(byte key)Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableByteByteMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableByteByteMap Modifier and Type Class Description classByteByteHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classSynchronizedByteByteMapA synchronized view of aMutableByteByteMap.classUnmodifiableByteByteMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableByteByteMap Modifier and Type Method Description MutableByteByteMapByteByteHashMap. asSynchronized()MutableByteByteMapSynchronizedByteByteMap. asSynchronized()MutableByteByteMapUnmodifiableByteByteMap. asSynchronized()MutableByteByteMapByteByteHashMap. asUnmodifiable()MutableByteByteMapSynchronizedByteByteMap. asUnmodifiable()MutableByteByteMapUnmodifiableByteByteMap. asUnmodifiable()MutableByteByteMapMutableByteByteMapFactoryImpl. empty()MutableByteByteMapByteByteHashMap. flipUniqueValues()MutableByteByteMapSynchronizedByteByteMap. flipUniqueValues()MutableByteByteMapUnmodifiableByteByteMap. flipUniqueValues()<T> MutableByteByteMapMutableByteByteMapFactoryImpl. from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)MutableByteByteMapMutableByteByteMapFactoryImpl. of()MutableByteByteMapMutableByteByteMapFactoryImpl. ofAll(ByteByteMap map)MutableByteByteMapMutableByteByteMapFactoryImpl. ofInitialCapacity(int capacity)MutableByteByteMapSynchronizedByteByteMap. reject(ByteBytePredicate predicate)MutableByteByteMapUnmodifiableByteByteMap. reject(ByteBytePredicate predicate)MutableByteByteMapSynchronizedByteByteMap. select(ByteBytePredicate predicate)MutableByteByteMapUnmodifiableByteByteMap. select(ByteBytePredicate predicate)MutableByteByteMapMutableByteByteMapFactoryImpl. with()MutableByteByteMapMutableByteByteMapFactoryImpl. withAll(ByteByteMap map)MutableByteByteMapMutableByteByteMapFactoryImpl. withInitialCapacity(int capacity)MutableByteByteMapSynchronizedByteByteMap. withKeyValue(byte key, byte value)MutableByteByteMapUnmodifiableByteByteMap. withKeyValue(byte key, byte value)MutableByteByteMapSynchronizedByteByteMap. withoutAllKeys(ByteIterable keys)MutableByteByteMapUnmodifiableByteByteMap. withoutAllKeys(ByteIterable keys)MutableByteByteMapSynchronizedByteByteMap. withoutKey(byte key)MutableByteByteMapUnmodifiableByteByteMap. withoutKey(byte key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableByteByteMap Constructor Description SynchronizedByteByteMap(MutableByteByteMap map)SynchronizedByteByteMap(MutableByteByteMap map, Object newLock)UnmodifiableByteByteMap(MutableByteByteMap map)