Schnittstelle Double2LongMap

Alle Superschnittstellen:
Double2LongFunction, DoubleToLongFunction, Map<Double,Long>
Alle bekannten Unterschnittstellen:
Double2LongConcurrentMap, Double2LongNavigableMap, Double2LongOrderedMap, Double2LongSortedMap
Alle bekannten Implementierungsklassen:
AbstractDouble2LongMap, Double2LongArrayMap, Double2LongAVLTreeMap, Double2LongConcurrentOpenHashMap, Double2LongLinkedOpenCustomHashMap, Double2LongLinkedOpenHashMap, Double2LongMaps.EmptyMap, Double2LongMaps.SingletonMap, Double2LongMaps.SynchronizedMap, Double2LongMaps.SynchronizedNavigableMap, Double2LongMaps.SynchronizedOrderedMap, Double2LongMaps.SynchronizedSortedMap, Double2LongMaps.UnmodifyableMap, Double2LongMaps.UnmodifyableNavigableMap, Double2LongMaps.UnmodifyableOrderedMap, Double2LongMaps.UnmodifyableSortedMap, Double2LongOpenCustomHashMap, Double2LongOpenHashMap, Double2LongRBTreeMap, ImmutableDouble2LongOpenHashMap

public interface Double2LongMap extends Map<Double,Long>, Double2LongFunction
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
    long
    addTo(double key, long value)
    A Helper method to add a primitives together.
    void
    A Helper method to bulk add primitives together.
    default long
    applyAsLong(double 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.
    default Long
    compute(Double key, BiFunction<? super Double,? super Long,? extends Long> mappingFunction)
    Veraltet.
    default Long
    computeIfAbsent(Double key, Function<? super Double,? extends Long> mappingFunction)
    Veraltet.
    default Long
    computeIfPresent(Double key, BiFunction<? super Double,? super Long,? extends Long> mappingFunction)
    Veraltet.
    long
    computeLong(double key, DoubleLongUnaryOperator 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".
    long
    computeLongIfAbsent(double key, Double2LongFunction 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".
    long
    computeLongIfAbsentNonDefault(double key, Double2LongFunction 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".
    long
    computeLongIfPresent(double key, DoubleLongUnaryOperator 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".
    long
    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".
    long
    computeLongNonDefault(double key, DoubleLongUnaryOperator 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(double key)
    Type Specific method to reduce boxing/unboxing of values
    default boolean
     
    boolean
    containsValue(long value)
    Type Specific method to reduce boxing/unboxing of values
    default boolean
     
    A Function that does a shallow clone of the Map itself.
    Type Sensitive EntrySet to reduce boxing/unboxing and optionally Temp Object Allocation.
    Veraltet.
    default void
    forEach(BiConsumer<? super Double,? super Long> action)
    Veraltet.
    void
    Type Specific forEach method to reduce boxing/unboxing
    long
    get(double key)
    A Type Specific get method to reduce boxing/unboxing
    default Long
    get(Object key)
    Veraltet.
    long
    Method to see what the default return value is.
    long
    getOrDefault(double key, long defaultValue)
    A Type Specific getOrDefault method to reduce boxing/unboxing
    default Long
    getOrDefault(Object key, Long defaultValue)
    Veraltet.
     
    default Long
    merge(Double key, Long value, BiFunction<? super Long,? super Long,? extends Long> mappingFunction)
    Veraltet.
    void
    A Bulk method for merging Maps.
    long
    mergeLong(double key, long value, LongLongUnaryOperator 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".
    long
    put(double key, long value)
    Type Specific method to reduce boxing/unboxing of values
    default Long
    put(Double key, Long value)
    Veraltet.
    default Long
    A Helper method that allows to put int a Map.Entry into a map.
    default long
    A Helper method that allows to put int a Double2LongMap.Entry into a map.
    default void
    putAll(double[] keys, long[] values)
    Type Specific array method to bulk add elements into a map without creating a wrapper and increasing performances
    void
    putAll(double[] keys, long[] 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(Double[] keys, Long[] values)
    Type Specific Object array method to bulk add elements into a map without creating a wrapper and increasing performances
    void
    putAll(Double[] keys, Long[] 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.
    long
    putIfAbsent(double key, long value)
    Type Specific method to reduce boxing/unboxing of values
    default Long
    putIfAbsent(Double key, Long value)
    Veraltet.
    long
    remove(double key)
    Type Specific remove function to reduce boxing/unboxing
    boolean
    remove(double key, long value)
    Type Specific remove function to reduce boxing/unboxing
    default Long
     
    default boolean
    remove(Object key, Object value)
     
    long
    removeOrDefault(double key, long defaultValue)
    Type-Specific Remove function with a default return value if wanted.
    long
    replace(double key, long value)
    A Type Specific replace method to reduce boxing/unboxing replace an existing value
    boolean
    replace(double key, long oldValue, long newValue)
    A Type Specific replace method to replace an existing value
    default Long
    replace(Double key, Long value)
    Veraltet.
    default boolean
    replace(Double key, Long oldValue, Long newValue)
    Veraltet.
    default void
    replaceAll(BiFunction<? super Double,? super Long,? extends Long> 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
    long
    subFrom(double key, long value)
    A Helper method to subtract from primitive from each other.
    long
    supplyLongIfAbsent(double key, LongSupplier 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".
    long
    supplyLongIfAbsentNonDefault(double key, LongSupplier 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".
    Creates a Wrapped Map that is Synchronized
    Creates a Wrapped Map that is Synchronized
    Creates a Wrapped Map that is unmodifiable
     

    Von Schnittstelle geerbte Methoden java.util.Map

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

    • builder

      static Double2LongMap.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

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

      Double2LongMap setDefaultReturnValue(long 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

      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

      long put(double key, long 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 long put(Double2LongMap.Entry entry)
      A Helper method that allows to put int a Double2LongMap.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 Long put(Map.Entry<Double,Long> 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(double[] keys, long[] 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(double[] keys, long[] 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(Double[] keys, Long[] 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(Double[] keys, Long[] 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

      long putIfAbsent(double key, long 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(Double2LongMap 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

      long addTo(double key, long 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(Double2LongMap m)
      A Helper method to bulk add primitives together.
      Parameter:
      m - the values that should be added/inserted
    • subFrom

      long subFrom(double key, long 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(Double2LongMap m)
      Type Specific function for the bull putting of values
      Parameter:
      m - the elements that should be inserted
    • containsKey

      boolean containsKey(double 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<Double,Long>
      Parameter:
      key - that is searched for.
      Gibt zurück:
      true if found
      Siehe auch:
      Note:
      in some implementations key does not have to be Double but just have to support equals with Double.
    • containsValue

      boolean containsValue(long 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<Double,Long>
      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

      long remove(double 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 Long remove(Object key)
      Angegeben von:
      remove in Schnittstelle Map<Double,Long>
      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 Double but just have to support equals with Double.
    • remove

      boolean remove(double key, long 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<Double,Long>
      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

      long removeOrDefault(double key, long 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(double key, long oldValue, long 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

      long replace(double key, long 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
    • replaceLongs

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

      void replaceLongs(DoubleLongUnaryOperator mappingFunction)
      A Type Specific mass replace method to reduce boxing/unboxing
      Parameter:
      mappingFunction - operation to replace all values
    • computeLong

      long computeLong(double key, DoubleLongUnaryOperator 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
    • computeLongIfAbsent

      long computeLongIfAbsent(double key, Double2LongFunction 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
    • supplyLongIfAbsent

      long supplyLongIfAbsent(double key, LongSupplier 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
    • computeLongIfPresent

      long computeLongIfPresent(double key, DoubleLongUnaryOperator 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
    • computeLongNonDefault

      long computeLongNonDefault(double key, DoubleLongUnaryOperator 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
    • computeLongIfAbsentNonDefault

      long computeLongIfAbsentNonDefault(double key, Double2LongFunction 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
    • supplyLongIfAbsentNonDefault

      long supplyLongIfAbsentNonDefault(double key, LongSupplier 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
    • computeLongIfPresentNonDefault

      long computeLongIfPresentNonDefault(double key, DoubleLongUnaryOperator 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
    • mergeLong

      long mergeLong(double key, long value, LongLongUnaryOperator 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
    • mergeAllLong

      void mergeAllLong(Double2LongMap m, LongLongUnaryOperator 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(Double key, Long oldValue, Long newValue)
      Veraltet.
      Angegeben von:
      replace in Schnittstelle Map<Double,Long>
    • replace

      @Deprecated default Long replace(Double key, Long value)
      Veraltet.
      Angegeben von:
      replace in Schnittstelle Map<Double,Long>
    • applyAsLong

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

      long get(double 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

      long getOrDefault(double key, long 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 Long get(Object key)
      Veraltet.
      Angegeben von:
      get in Schnittstelle Map<Double,Long>
    • getOrDefault

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

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

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

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

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

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

      void forEach(DoubleLongConsumer 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 Double,? super Long> action)
      Veraltet.
      Angegeben von:
      forEach in Schnittstelle Map<Double,Long>
    • keySet

      DoubleSet keySet()
      Angegeben von:
      keySet in Schnittstelle Map<Double,Long>
    • values

      LongCollection values()
      Angegeben von:
      values in Schnittstelle Map<Double,Long>
    • entrySet

      Veraltet.
      Angegeben von:
      entrySet in Schnittstelle Map<Double,Long>
    • double2LongEntrySet

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

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

      default Double2LongMap 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 Double2LongMap unmodifiable()
      Creates a Wrapped Map that is unmodifiable
      Gibt zurück:
      a new Map Wrapper that is unmodifiable
      Siehe auch:
    • put

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

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