Alle Superschnittstellen:
Byte2IntFunction, Map<Byte,Integer>
Alle bekannten Unterschnittstellen:
Byte2IntConcurrentMap, Byte2IntNavigableMap, Byte2IntOrderedMap, Byte2IntSortedMap
Alle bekannten Implementierungsklassen:
AbstractByte2IntMap, Byte2IntArrayMap, Byte2IntAVLTreeMap, Byte2IntConcurrentOpenHashMap, Byte2IntLinkedOpenCustomHashMap, Byte2IntLinkedOpenHashMap, Byte2IntMaps.EmptyMap, Byte2IntMaps.SingletonMap, Byte2IntMaps.SynchronizedMap, Byte2IntMaps.SynchronizedNavigableMap, Byte2IntMaps.SynchronizedOrderedMap, Byte2IntMaps.SynchronizedSortedMap, Byte2IntMaps.UnmodifyableMap, Byte2IntMaps.UnmodifyableNavigableMap, Byte2IntMaps.UnmodifyableOrderedMap, Byte2IntMaps.UnmodifyableSortedMap, Byte2IntOpenCustomHashMap, Byte2IntOpenHashMap, Byte2IntRBTreeMap, ImmutableByte2IntOpenHashMap

public interface Byte2IntMap extends Map<Byte,Integer>, Byte2IntFunction
A Type Specific Map that reduces memory overhead due to boxing/unboxing of Primitives and some extra helper functions.
  • Verschachtelte Klassen - Übersicht

    Verschachtelte Klassen
    Modifizierer und Typ
    Schnittstelle
    Beschreibung
    static class 
    Builder Cache for allowing to buildMaps
    static interface 
    Type Specific Map Entry that reduces boxing/unboxing
    static interface 
    Fast Entry set that allows for a faster Entry Iterator by recycling the Entry Object and just exchanging 1 internal value
    static final class 
    Helper class that reduces the method spam of the Map Class.
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    int
    addTo(byte key, int value)
    A Helper method to add a primitives together.
    void
    A Helper method to bulk add primitives together.
    default int
    applyAsInt(byte key)
    Type Specific get function to reduce boxing/unboxing
    Helper Class that allows to create Maps without requiring a to type out the entire implementation or know it.
    Type Sensitive EntrySet to reduce boxing/unboxing and optionally Temp Object Allocation.
    default Integer
    compute(Byte key, BiFunction<? super Byte,? super Integer,? extends Integer> mappingFunction)
    Veraltet.
    default Integer
    computeIfAbsent(Byte key, Function<? super Byte,? extends Integer> mappingFunction)
    Veraltet.
    default Integer
    computeIfPresent(Byte key, BiFunction<? super Byte,? super Integer,? extends Integer> mappingFunction)
    Veraltet.
    int
    computeInt(byte key, ByteIntUnaryOperator mappingFunction)
    A Type Specific compute method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null".
    int
    computeIntIfAbsent(byte key, Byte2IntFunction mappingFunction)
    A Type Specific computeIfAbsent method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null".
    int
    computeIntIfAbsentNonDefault(byte key, Byte2IntFunction mappingFunction)
    A Type Specific computeIfAbsent method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null".
    int
    computeIntIfPresent(byte key, ByteIntUnaryOperator mappingFunction)
    A Type Specific compute method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null".
    int
    A Type Specific compute method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null".
    int
    computeIntNonDefault(byte key, ByteIntUnaryOperator mappingFunction)
    A Type Specific compute method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null".
    boolean
    containsKey(byte key)
    Type Specific method to reduce boxing/unboxing of values
    default boolean
     
    boolean
    containsValue(int value)
    Type Specific method to reduce boxing/unboxing of values
    default boolean
     
    A Function that does a shallow clone of the Map itself.
    Veraltet.
    default void
    forEach(BiConsumer<? super Byte,? super Integer> action)
    Veraltet.
    void
    Type Specific forEach method to reduce boxing/unboxing
    int
    get(byte key)
    A Type Specific get method to reduce boxing/unboxing
    default Integer
    get(Object key)
    Veraltet.
    int
    Method to see what the default return value is.
    int
    getOrDefault(byte key, int defaultValue)
    A Type Specific getOrDefault method to reduce boxing/unboxing
    default Integer
    getOrDefault(Object key, Integer defaultValue)
    Veraltet.
     
    default Integer
    merge(Byte key, Integer value, BiFunction<? super Integer,? super Integer,? extends Integer> mappingFunction)
    Veraltet.
    void
    A Bulk method for merging Maps.
    int
    mergeInt(byte key, int value, IntIntUnaryOperator mappingFunction)
    A Type Specific merge method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null".
    int
    put(byte key, int value)
    Type Specific method to reduce boxing/unboxing of values
    default Integer
    put(Byte key, Integer value)
    Veraltet.
    default Integer
    A Helper method that allows to put int a Map.Entry into a map.
    default int
    A Helper method that allows to put int a Byte2IntMap.Entry into a map.
    default void
    putAll(byte[] keys, int[] values)
    Type Specific array method to bulk add elements into a map without creating a wrapper and increasing performances
    void
    putAll(byte[] keys, int[] values, int offset, int size)
    Type Specific array method to bulk add elements into a map without creating a wrapper and increasing performances
    default void
    putAll(Byte[] keys, Integer[] values)
    Type Specific Object array method to bulk add elements into a map without creating a wrapper and increasing performances
    void
    putAll(Byte[] keys, Integer[] values, int offset, int size)
    Type Specific Object array method to bulk add elements into a map without creating a wrapper and increasing performances
    void
    Type Specific function for the bull putting of values
    void
    Type-Specific bulk put method put elements into the map if not present.
    int
    putIfAbsent(byte key, int value)
    Type Specific method to reduce boxing/unboxing of values
    default Integer
    putIfAbsent(Byte key, Integer value)
    Veraltet.
    int
    remove(byte key)
    Type Specific remove function to reduce boxing/unboxing
    boolean
    remove(byte key, int value)
    Type Specific remove function to reduce boxing/unboxing
    default Integer
     
    default boolean
    remove(Object key, Object value)
     
    int
    removeOrDefault(byte key, int defaultValue)
    Type-Specific Remove function with a default return value if wanted.
    int
    replace(byte key, int value)
    A Type Specific replace method to reduce boxing/unboxing replace an existing value
    boolean
    replace(byte key, int oldValue, int newValue)
    A Type Specific replace method to replace an existing value
    default Integer
    replace(Byte key, Integer value)
    Veraltet.
    default boolean
    replace(Byte key, Integer oldValue, Integer newValue)
    Veraltet.
    default void
    replaceAll(BiFunction<? super Byte,? super Integer,? extends Integer> mappingFunction)
    Veraltet.
    void
    A Type Specific mass replace method to reduce boxing/unboxing
    void
    Type-Specific bulk replace method.
    Method to define the default return value if a requested key isn't present
    int
    subFrom(byte key, int value)
    A Helper method to subtract from primitive from each other.
    int
    supplyIntIfAbsent(byte key, IntSupplier valueProvider)
    A Supplier based computeIfAbsent function to fill the most used usecase of this function If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null".
    int
    supplyIntIfAbsentNonDefault(byte key, IntSupplier valueProvider)
    A Supplier based computeIfAbsent function to fill the most used usecase of this function If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null".
    default Byte2IntMap
    Creates a Wrapped Map that is Synchronized
    default Byte2IntMap
    Creates a Wrapped Map that is Synchronized
    default Byte2IntMap
    Creates a Wrapped Map that is unmodifiable
     

    Von Schnittstelle geerbte Methoden java.util.Map

    clear, equals, hashCode, isEmpty, putAll, size
  • Methodendetails

    • builder

      static Byte2IntMap.MapBuilder builder()
      Helper Class that allows to create Maps without requiring a to type out the entire implementation or know it.
      Gibt zurück:
      a MapBuilder
    • getDefaultReturnValue

      int getDefaultReturnValue()
      Method to see what the default return value is.
      Gibt zurück:
      default return value
    • setDefaultReturnValue

      Byte2IntMap setDefaultReturnValue(int v)
      Method to define the default return value if a requested key isn't present
      Parameter:
      v - value that should be the default return value
      Gibt zurück:
      itself
    • copy

      Byte2IntMap copy()
      A Function that does a shallow clone of the Map itself. This function is more optimized then a copy constructor since the Map does not have to be unsorted/resorted. It can be compared to Cloneable but with less exception risk
      Gibt zurück:
      a Shallow Copy of the Map
      Note:
      Wrappers and view Maps will not support this feature
    • put

      int put(byte key, int value)
      Type Specific method to reduce boxing/unboxing of values
      Parameter:
      key - the key that should be inserted,
      value - the value that should be inserted
      Gibt zurück:
      the last present value or default return value.
      Siehe auch:
    • put

      default int put(Byte2IntMap.Entry entry)
      A Helper method that allows to put int a Byte2IntMap.Entry into a map.
      Parameter:
      entry - then Entry that should be inserted.
      Gibt zurück:
      the last present value or default return value.
    • put

      default Integer put(Map.Entry<Byte,Integer> entry)
      A Helper method that allows to put int a Map.Entry into a map.
      Parameter:
      entry - then Entry that should be inserted.
      Gibt zurück:
      the last present value or default return value.
    • putAll

      default void putAll(byte[] keys, int[] values)
      Type Specific array method to bulk add elements into a map without creating a wrapper and increasing performances
      Parameter:
      keys - the keys that should be added
      values - the values that should be added
      Löst aus:
      IllegalStateException - if the arrays are not the same size
      Siehe auch:
    • putAll

      void putAll(byte[] keys, int[] values, int offset, int size)
      Type Specific array method to bulk add elements into a map without creating a wrapper and increasing performances
      Parameter:
      keys - the keys that should be added
      values - the values that should be added
      offset - where the to start in the array
      size - how many elements should be added
      Löst aus:
      IllegalStateException - if the arrays are not within the range
      Siehe auch:
    • putAll

      default void putAll(Byte[] keys, Integer[] values)
      Type Specific Object array method to bulk add elements into a map without creating a wrapper and increasing performances
      Parameter:
      keys - the keys that should be added
      values - the values that should be added
      Löst aus:
      IllegalStateException - if the arrays are not the same size
      Siehe auch:
    • putAll

      void putAll(Byte[] keys, Integer[] values, int offset, int size)
      Type Specific Object array method to bulk add elements into a map without creating a wrapper and increasing performances
      Parameter:
      keys - the keys that should be added
      values - the values that should be added
      offset - where the to start in the array
      size - how many elements should be added
      Löst aus:
      IllegalStateException - if the arrays are not within the range
      Siehe auch:
    • putIfAbsent

      int putIfAbsent(byte key, int value)
      Type Specific method to reduce boxing/unboxing of values
      Parameter:
      key - the key that should be inserted,
      value - the value that should be inserted
      Gibt zurück:
      the last present value or default return value.
      Siehe auch:
    • putAllIfAbsent

      void putAllIfAbsent(Byte2IntMap m)
      Type-Specific bulk put method put elements into the map if not present.
      Parameter:
      m - elements that should be added if not present.
    • addTo

      int addTo(byte key, int value)
      A Helper method to add a primitives together. If key is not present then this functions as a put.
      Parameter:
      key - the key that should be inserted,
      value - the value that should be inserted / added
      Gibt zurück:
      the last present value or default return value.
    • addToAll

      void addToAll(Byte2IntMap m)
      A Helper method to bulk add primitives together.
      Parameter:
      m - the values that should be added/inserted
    • subFrom

      int subFrom(byte key, int value)
      A Helper method to subtract from primitive from each other. If the key is not present it will just return the defaultValue How the implementation works is that it will subtract from the current value (if not present it will do nothing) and fence it to the getDefaultReturnValue() If the fence is reached the element will be automaticall removed
      Parameter:
      key - that should be subtract from
      value - that should be subtract
      Gibt zurück:
      the last present or default return value
    • putAll

      void putAll(Byte2IntMap m)
      Type Specific function for the bull putting of values
      Parameter:
      m - the elements that should be inserted
    • containsKey

      boolean containsKey(byte key)
      Type Specific method to reduce boxing/unboxing of values
      Parameter:
      key - element that is searched for
      Gibt zurück:
      if the key is present
    • containsKey

      default boolean containsKey(Object key)
      Angegeben von:
      containsKey in Schnittstelle Map<Byte,Integer>
      Parameter:
      key - that is searched for.
      Gibt zurück:
      true if found
      Siehe auch:
      Note:
      in some implementations key does not have to be Byte but just have to support equals with Byte.
    • containsValue

      boolean containsValue(int value)
      Type Specific method to reduce boxing/unboxing of values
      Parameter:
      value - element that is searched for
      Gibt zurück:
      if the value is present
    • containsValue

      default boolean containsValue(Object value)
      Angegeben von:
      containsValue in Schnittstelle Map<Byte,Integer>
      Parameter:
      value - that is searched for.
      Gibt zurück:
      true if found
      Siehe auch:
      Note:
      in some implementations key does not have to be CLASS_VALUE but just have to support equals with CLASS_VALUE.
    • remove

      int remove(byte key)
      Type Specific remove function to reduce boxing/unboxing
      Parameter:
      key - the element that should be removed
      Gibt zurück:
      the value that was removed or default return value
    • remove

      default Integer remove(Object key)
      Angegeben von:
      remove in Schnittstelle Map<Byte,Integer>
      Parameter:
      key - the element that should be removed
      Gibt zurück:
      the value that was removed or default return value
      Siehe auch:
      Note:
      in some implementations key does not have to be Byte but just have to support equals with Byte.
    • remove

      boolean remove(byte key, int value)
      Type Specific remove function to reduce boxing/unboxing
      Parameter:
      key - the element that should be removed
      value - the expected value that should be found
      Gibt zurück:
      true if the key and value was found and removed
      Siehe auch:
    • remove

      default boolean remove(Object key, Object value)
      Angegeben von:
      remove in Schnittstelle Map<Byte,Integer>
      Parameter:
      key - the element that should be removed
      value - the expected value that should be found
      Gibt zurück:
      true if the key and value was found and removed
      Siehe auch:
    • removeOrDefault

      int removeOrDefault(byte key, int defaultValue)
      Type-Specific Remove function with a default return value if wanted.
      Parameter:
      key - the element that should be removed
      defaultValue - the value that should be returned if the entry doesn't exist
      Gibt zurück:
      the value that was removed or default value
      Siehe auch:
    • replace

      boolean replace(byte key, int oldValue, int newValue)
      A Type Specific replace method to replace an existing value
      Parameter:
      key - the element that should be searched for
      oldValue - the expected value to be replaced
      newValue - the value to replace the oldValue with.
      Gibt zurück:
      true if the value got replaced
      Note:
      this fails if the value is not present even if it matches the oldValue
    • replace

      int replace(byte key, int value)
      A Type Specific replace method to reduce boxing/unboxing replace an existing value
      Parameter:
      key - the element that should be searched for
      value - the value to replace with.
      Gibt zurück:
      the present value or default return value
      Note:
      this fails if the value is not present
    • replaceInts

      void replaceInts(Byte2IntMap m)
      Type-Specific bulk replace method. Could be seen as putAllIfPresent
      Parameter:
      m - elements that should be replaced.
    • replaceInts

      void replaceInts(ByteIntUnaryOperator mappingFunction)
      A Type Specific mass replace method to reduce boxing/unboxing
      Parameter:
      mappingFunction - operation to replace all values
    • computeInt

      int computeInt(byte key, ByteIntUnaryOperator mappingFunction)
      A Type Specific compute method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.
      Parameter:
      key - the key that should be computed
      mappingFunction - the operator that should generate the value
      Gibt zurück:
      the result of the computation
    • computeIntIfAbsent

      int computeIntIfAbsent(byte key, Byte2IntFunction mappingFunction)
      A Type Specific computeIfAbsent method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.
      Parameter:
      key - the key that should be computed
      mappingFunction - the operator that should generate the value if not present
      Gibt zurück:
      the result of the computed value or present value
    • supplyIntIfAbsent

      int supplyIntIfAbsent(byte key, IntSupplier valueProvider)
      A Supplier based computeIfAbsent function to fill the most used usecase of this function If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.
      Parameter:
      key - the key that should be computed
      valueProvider - the value if not present
      Gibt zurück:
      the result of the computed value or present value
    • computeIntIfPresent

      int computeIntIfPresent(byte key, ByteIntUnaryOperator mappingFunction)
      A Type Specific compute method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.
      Parameter:
      key - the key that should be computed
      mappingFunction - the operator that should generate the value if present
      Gibt zurück:
      the result of the default return value or present value
      Note:
      if not present then compute is not executed
    • computeIntNonDefault

      int computeIntNonDefault(byte key, ByteIntUnaryOperator mappingFunction)
      A Type Specific compute method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.
      Parameter:
      key - the key that should be computed
      mappingFunction - the operator that should generate the value
      Gibt zurück:
      the result of the computation
    • computeIntIfAbsentNonDefault

      int computeIntIfAbsentNonDefault(byte key, Byte2IntFunction mappingFunction)
      A Type Specific computeIfAbsent method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.
      Parameter:
      key - the key that should be computed
      mappingFunction - the operator that should generate the value if not present
      Gibt zurück:
      the result of the computed value or present value
    • supplyIntIfAbsentNonDefault

      int supplyIntIfAbsentNonDefault(byte key, IntSupplier valueProvider)
      A Supplier based computeIfAbsent function to fill the most used usecase of this function If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.
      Parameter:
      key - the key that should be computed
      valueProvider - the value if not present
      Gibt zurück:
      the result of the computed value or present value
    • computeIntIfPresentNonDefault

      int computeIntIfPresentNonDefault(byte key, ByteIntUnaryOperator mappingFunction)
      A Type Specific compute method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.
      Parameter:
      key - the key that should be computed
      mappingFunction - the operator that should generate the value if present
      Gibt zurück:
      the result of the default return value or present value
      Note:
      if not present then compute is not executed
    • mergeInt

      int mergeInt(byte key, int value, IntIntUnaryOperator mappingFunction)
      A Type Specific merge method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.
      Parameter:
      key - the key that should be be searched for
      value - the value that should be merged with
      mappingFunction - the operator that should generate the new Value
      Gibt zurück:
      the result of the merge
      Note:
      if the result matches the default return value then the key is removed from the map
    • mergeAllInt

      void mergeAllInt(Byte2IntMap m, IntIntUnaryOperator mappingFunction)
      A Bulk method for merging Maps. If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.
      Parameter:
      m - the entries that should be bulk added
      mappingFunction - the operator that should generate the new Value
      Note:
      if the result matches the default return value then the key is removed from the map
    • replace

      @Deprecated default boolean replace(Byte key, Integer oldValue, Integer newValue)
      Veraltet.
      Angegeben von:
      replace in Schnittstelle Map<Byte,Integer>
    • replace

      @Deprecated default Integer replace(Byte key, Integer value)
      Veraltet.
      Angegeben von:
      replace in Schnittstelle Map<Byte,Integer>
    • applyAsInt

      default int applyAsInt(byte key)
      Beschreibung aus Schnittstelle kopiert: Byte2IntFunction
      Type Specific get function to reduce boxing/unboxing
      Angegeben von:
      applyAsInt in Schnittstelle Byte2IntFunction
      Parameter:
      key - the value that should be processed
      Gibt zurück:
      the result of the function
    • get

      int get(byte key)
      A Type Specific get method to reduce boxing/unboxing
      Parameter:
      key - the key that is searched for
      Gibt zurück:
      the searched value or default return value
    • getOrDefault

      int getOrDefault(byte key, int defaultValue)
      A Type Specific getOrDefault method to reduce boxing/unboxing
      Parameter:
      key - the key that is searched for
      defaultValue - the value that should be returned if the key is not present
      Gibt zurück:
      the searched value or defaultValue value
    • get

      @Deprecated default Integer get(Object key)
      Veraltet.
      Angegeben von:
      get in Schnittstelle Map<Byte,Integer>
    • getOrDefault

      @Deprecated default Integer getOrDefault(Object key, Integer defaultValue)
      Veraltet.
      Angegeben von:
      getOrDefault in Schnittstelle Map<Byte,Integer>
    • replaceAll

      @Deprecated default void replaceAll(BiFunction<? super Byte,? super Integer,? extends Integer> mappingFunction)
      Veraltet.
      Angegeben von:
      replaceAll in Schnittstelle Map<Byte,Integer>
    • compute

      @Deprecated default Integer compute(Byte key, BiFunction<? super Byte,? super Integer,? extends Integer> mappingFunction)
      Veraltet.
      Angegeben von:
      compute in Schnittstelle Map<Byte,Integer>
    • computeIfAbsent

      @Deprecated default Integer computeIfAbsent(Byte key, Function<? super Byte,? extends Integer> mappingFunction)
      Veraltet.
      Angegeben von:
      computeIfAbsent in Schnittstelle Map<Byte,Integer>
    • computeIfPresent

      @Deprecated default Integer computeIfPresent(Byte key, BiFunction<? super Byte,? super Integer,? extends Integer> mappingFunction)
      Veraltet.
      Angegeben von:
      computeIfPresent in Schnittstelle Map<Byte,Integer>
    • merge

      @Deprecated default Integer merge(Byte key, Integer value, BiFunction<? super Integer,? super Integer,? extends Integer> mappingFunction)
      Veraltet.
      Angegeben von:
      merge in Schnittstelle Map<Byte,Integer>
    • forEach

      void forEach(ByteIntConsumer action)
      Type Specific forEach method to reduce boxing/unboxing
      Parameter:
      action - processor of the values that are iterator over
    • forEach

      @Deprecated default void forEach(BiConsumer<? super Byte,? super Integer> action)
      Veraltet.
      Angegeben von:
      forEach in Schnittstelle Map<Byte,Integer>
    • keySet

      ByteSet keySet()
      Angegeben von:
      keySet in Schnittstelle Map<Byte,Integer>
    • values

      IntCollection values()
      Angegeben von:
      values in Schnittstelle Map<Byte,Integer>
    • entrySet

      Veraltet.
      Angegeben von:
      entrySet in Schnittstelle Map<Byte,Integer>
    • byte2IntEntrySet

      ObjectSet<Byte2IntMap.Entry> byte2IntEntrySet()
      Type Sensitive EntrySet to reduce boxing/unboxing and optionally Temp Object Allocation.
      Gibt zurück:
      a EntrySet of the collection
    • synchronize

      default Byte2IntMap synchronize()
      Creates a Wrapped Map that is Synchronized
      Gibt zurück:
      a new Map that is synchronized
      Siehe auch:
    • synchronize

      default Byte2IntMap synchronize(Object mutex)
      Creates a Wrapped Map that is Synchronized
      Parameter:
      mutex - is the controller of the synchronization block
      Gibt zurück:
      a new Map Wrapper that is synchronized
      Siehe auch:
    • unmodifiable

      default Byte2IntMap unmodifiable()
      Creates a Wrapped Map that is unmodifiable
      Gibt zurück:
      a new Map Wrapper that is unmodifiable
      Siehe auch:
    • put

      @Deprecated default Integer put(Byte key, Integer value)
      Veraltet.
      Angegeben von:
      put in Schnittstelle Map<Byte,Integer>
    • putIfAbsent

      @Deprecated default Integer putIfAbsent(Byte key, Integer value)
      Veraltet.
      Angegeben von:
      putIfAbsent in Schnittstelle Map<Byte,Integer>