Uses of Interface
org.eclipse.collections.api.map.primitive.MutableIntByteMap
-
Packages that use 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.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. -
-
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(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableIntByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntByteMapMutableIntByteMapFactory. of()Same asMutableIntByteMapFactory.empty().default MutableIntByteMapMutableIntByteMapFactory. of(int key, byte value)default MutableIntByteMapMutableIntByteMapFactory. of(int key1, byte value1, int key2, byte value2)default MutableIntByteMapMutableIntByteMapFactory. of(int key1, byte value1, int key2, byte value2, int key3, byte value3)default MutableIntByteMapMutableIntByteMapFactory. of(int key1, byte value1, int key2, byte value2, int key3, byte value3, int key4, byte value4)MutableIntByteMapMutableIntByteMapFactory. ofAll(IntByteMap map)MutableIntByteMapMutableIntByteMapFactory. ofInitialCapacity(int capacity)Same asMutableIntByteMapFactory.empty().MutableIntByteMapMutableIntByteMapFactory. with()Same asMutableIntByteMapFactory.empty().default MutableIntByteMapMutableIntByteMapFactory. with(int key, byte value)default MutableIntByteMapMutableIntByteMapFactory. with(int key1, byte value1, int key2, byte value2)default MutableIntByteMapMutableIntByteMapFactory. with(int key1, byte value1, int key2, byte value2, int key3, byte value3)default MutableIntByteMapMutableIntByteMapFactory. with(int key1, byte value1, int key2, byte value2, int key3, byte value3, int key4, byte value4)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(java.lang.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.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableIntByteMap Modifier and Type Field Description private MutableIntByteMapImmutableIntByteHashMap. delegate -
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.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableIntByteMap Modifier and Type Field Description private MutableIntByteMapSynchronizedIntByteMap. mapprivate MutableIntByteMapUnmodifiableIntByteMap. mapMethods 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(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)MutableIntByteMapMutableIntByteMapFactoryImpl. of()MutableIntByteMapMutableIntByteMapFactoryImpl. of(int key, byte value)MutableIntByteMapMutableIntByteMapFactoryImpl. of(int key1, byte value1, int key2, byte value2)MutableIntByteMapMutableIntByteMapFactoryImpl. of(int key1, byte value1, int key2, byte value2, int key3, byte value3)MutableIntByteMapMutableIntByteMapFactoryImpl. of(int key1, byte value1, int key2, byte value2, int key3, byte value3, int key4, byte value4)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. with(int key, byte value)MutableIntByteMapMutableIntByteMapFactoryImpl. with(int key1, byte value1, int key2, byte value2)MutableIntByteMapMutableIntByteMapFactoryImpl. with(int key1, byte value1, int key2, byte value2, int key3, byte value3)MutableIntByteMapMutableIntByteMapFactoryImpl. with(int key1, byte value1, int key2, byte value2, int key3, byte value3, int key4, byte value4)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, java.lang.Object newLock)UnmodifiableIntByteMap(MutableIntByteMap map)
-