Uses of Interface
org.eclipse.collections.api.map.primitive.MutableIntByteMap
| 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 MutableIntByteMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableIntByteMap Modifier and Type Method Description MutableIntByteMapMutableIntByteMapFactory. empty()<T> MutableIntByteMapMutableIntByteMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableIntByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntByteMapMutableIntByteMapFactory. of()Same asMutableIntByteMapFactory.empty().MutableIntByteMapMutableIntByteMapFactory. ofAll(IntByteMap map)MutableIntByteMapMutableIntByteMapFactory. ofInitialCapacity(int capacity)Same asMutableIntByteMapFactory.empty().MutableIntByteMapMutableIntByteMapFactory. with()Same asMutableIntByteMapFactory.empty().MutableIntByteMapMutableIntByteMapFactory. withAll(IntByteMap map)MutableIntByteMapMutableIntByteMapFactory. withInitialCapacity(int capacity)Same asMutableIntByteMapFactory.empty(). -
Uses of MutableIntByteMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableIntByteMap Modifier and Type Method Description MutableIntByteMapMutableIntByteMap. 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.MutableIntByteMapMutableIntByteMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableIntByteMapMutableByteIntMap. flipUniqueValues()MutableIntByteMapMutableIntByteMap. reject(IntBytePredicate predicate)MutableIntByteMapMutableIntByteMap. select(IntBytePredicate predicate)default MutableIntByteMapMutableIntByteMap. withAllKeyValues(Iterable<IntBytePair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableIntByteMapMutableIntByteMap. withKeyValue(int key, byte value)Associates a value with the specified key.MutableIntByteMapMutableIntByteMap. withoutAllKeys(IntIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableIntByteMapMutableIntByteMap. withoutKey(int key)Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableIntByteMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableIntByteMap Modifier and Type Class Description classIntByteHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classSynchronizedIntByteMapA synchronized view of aMutableIntByteMap.classUnmodifiableIntByteMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableIntByteMap Modifier and Type Method Description MutableIntByteMapIntByteHashMap. asSynchronized()MutableIntByteMapSynchronizedIntByteMap. asSynchronized()MutableIntByteMapUnmodifiableIntByteMap. asSynchronized()MutableIntByteMapIntByteHashMap. asUnmodifiable()MutableIntByteMapSynchronizedIntByteMap. asUnmodifiable()MutableIntByteMapUnmodifiableIntByteMap. asUnmodifiable()MutableIntByteMapMutableIntByteMapFactoryImpl. empty()MutableIntByteMapByteIntHashMap. flipUniqueValues()MutableIntByteMapSynchronizedByteIntMap. flipUniqueValues()MutableIntByteMapUnmodifiableByteIntMap. flipUniqueValues()<T> MutableIntByteMapMutableIntByteMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)MutableIntByteMapMutableIntByteMapFactoryImpl. of()MutableIntByteMapMutableIntByteMapFactoryImpl. ofAll(IntByteMap map)MutableIntByteMapMutableIntByteMapFactoryImpl. ofInitialCapacity(int capacity)MutableIntByteMapSynchronizedIntByteMap. reject(IntBytePredicate predicate)MutableIntByteMapUnmodifiableIntByteMap. reject(IntBytePredicate predicate)MutableIntByteMapSynchronizedIntByteMap. select(IntBytePredicate predicate)MutableIntByteMapUnmodifiableIntByteMap. select(IntBytePredicate predicate)MutableIntByteMapMutableIntByteMapFactoryImpl. with()MutableIntByteMapMutableIntByteMapFactoryImpl. withAll(IntByteMap map)MutableIntByteMapMutableIntByteMapFactoryImpl. withInitialCapacity(int capacity)MutableIntByteMapSynchronizedIntByteMap. withKeyValue(int key, byte value)MutableIntByteMapUnmodifiableIntByteMap. withKeyValue(int key, byte value)MutableIntByteMapSynchronizedIntByteMap. withoutAllKeys(IntIterable keys)MutableIntByteMapUnmodifiableIntByteMap. withoutAllKeys(IntIterable keys)MutableIntByteMapSynchronizedIntByteMap. withoutKey(int key)MutableIntByteMapUnmodifiableIntByteMap. withoutKey(int key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableIntByteMap Constructor Description SynchronizedIntByteMap(MutableIntByteMap map)SynchronizedIntByteMap(MutableIntByteMap map, Object newLock)UnmodifiableIntByteMap(MutableIntByteMap map)