Klasse Float2ShortAVLTreeMap

Alle implementierten Schnittstellen:
Map<Float,Short>, NavigableMap<Float,Short>, SortedMap<Float,Short>, Float2ShortFunction, Float2ShortMap, Float2ShortNavigableMap, Float2ShortSortedMap

public class Float2ShortAVLTreeMap extends AbstractFloat2ShortMap implements Float2ShortNavigableMap
A Simple Type Specific AVL TreeMap implementation that reduces boxing/unboxing. It is using a bit more memory then FastUtil, but it saves a lot of Performance on the Optimized removal and iteration logic. Which makes the implementation actually useable and does not get outperformed by Javas default implementation.
  • Konstruktordetails

    • Float2ShortAVLTreeMap

      public Float2ShortAVLTreeMap()
      Default Constructor
    • Float2ShortAVLTreeMap

      public Float2ShortAVLTreeMap(FloatComparator comp)
      Constructor that allows to define the sorter
      Parameter:
      comp - the function that decides how the tree is sorted, can be null
    • Float2ShortAVLTreeMap

      public Float2ShortAVLTreeMap(Float[] keys, Short[] values)
      Helper constructor that allow to create a map from boxed values (it will unbox them)
      Parameter:
      keys - the keys that should be put into the map
      values - the values that should be put into the map.
      Löst aus:
      IllegalStateException - if the keys and values do not match in lenght
    • Float2ShortAVLTreeMap

      public Float2ShortAVLTreeMap(Float[] keys, Short[] values, FloatComparator comp)
      Helper constructor that has a custom sorter and allow to create a map from boxed values (it will unbox them)
      Parameter:
      keys - the keys that should be put into the map
      values - the values that should be put into the map.
      comp - the function that decides how the tree is sorted, can be null
      Löst aus:
      IllegalStateException - if the keys and values do not match in lenght
    • Float2ShortAVLTreeMap

      public Float2ShortAVLTreeMap(float[] keys, short[] values)
      Helper constructor that allow to create a map from unboxed values
      Parameter:
      keys - the keys that should be put into the map
      values - the values that should be put into the map.
      Löst aus:
      IllegalStateException - if the keys and values do not match in lenght
    • Float2ShortAVLTreeMap

      public Float2ShortAVLTreeMap(float[] keys, short[] values, FloatComparator comp)
      Helper constructor that has a custom sorter and allow to create a map from unboxed values
      Parameter:
      keys - the keys that should be put into the map
      values - the values that should be put into the map.
      comp - the function that decides how the tree is sorted, can be null
      Löst aus:
      IllegalStateException - if the keys and values do not match in lenght
    • Float2ShortAVLTreeMap

      public Float2ShortAVLTreeMap(Map<? extends Float,? extends Short> map)
      A Helper constructor that allows to create a Map with exactly the same values as the provided map.
      Parameter:
      map - the values that should be present in the map
    • Float2ShortAVLTreeMap

      public Float2ShortAVLTreeMap(Map<? extends Float,? extends Short> map, FloatComparator comp)
      A Helper constructor that has a custom sorter and allows to create a Map with exactly the same values as the provided map.
      Parameter:
      map - the values that should be present in the map
      comp - the function that decides how the tree is sorted, can be null
    • Float2ShortAVLTreeMap

      public Float2ShortAVLTreeMap(Float2ShortMap map)
      A Type Specific Helper function that allows to create a new Map with exactly the same values as the provided map.
      Parameter:
      map - the values that should be present in the map
    • Float2ShortAVLTreeMap

      public Float2ShortAVLTreeMap(Float2ShortMap map, FloatComparator comp)
      A Type Specific Helper function that has a custom sorter and allows to create a new Map with exactly the same values as the provided map.
      Parameter:
      map - the values that should be present in the map
      comp - the function that decides how the tree is sorted, can be null
  • Methodendetails

    • setDefaultMaxValue

      public void setDefaultMaxValue(float value)
      Beschreibung aus Schnittstelle kopiert: Float2ShortNavigableMap
      A Helper method to set the max value for SubMaps. (Default: float.MIN_VALUE)
      Angegeben von:
      setDefaultMaxValue in Schnittstelle Float2ShortNavigableMap
      Parameter:
      value - the new max value
    • getDefaultMaxValue

      public float getDefaultMaxValue()
      Beschreibung aus Schnittstelle kopiert: Float2ShortNavigableMap
      A Helper method to get the max value for SubMaps.
      Angegeben von:
      getDefaultMaxValue in Schnittstelle Float2ShortNavigableMap
      Gibt zurück:
      the default max value.
    • setDefaultMinValue

      public void setDefaultMinValue(float value)
      Beschreibung aus Schnittstelle kopiert: Float2ShortNavigableMap
      A Helper method to set the min value for SubMaps. (Default: float.MAX_VALUE)
      Angegeben von:
      setDefaultMinValue in Schnittstelle Float2ShortNavigableMap
      Parameter:
      value - the new min value
    • getDefaultMinValue

      public float getDefaultMinValue()
      Beschreibung aus Schnittstelle kopiert: Float2ShortNavigableMap
      A Helper method to get the min value for SubMaps.
      Angegeben von:
      getDefaultMinValue in Schnittstelle Float2ShortNavigableMap
      Gibt zurück:
      the default min value.
    • put

      public short put(float key, short value)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      Type Specific method to reduce boxing/unboxing of values
      Angegeben von:
      put in Schnittstelle Float2ShortMap
      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:
    • putIfAbsent

      public short putIfAbsent(float key, short value)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      Type Specific method to reduce boxing/unboxing of values
      Angegeben von:
      putIfAbsent in Schnittstelle Float2ShortMap
      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:
    • addTo

      public short addTo(float key, short value)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      A Helper method to add a primitives together. If key is not present then this functions as a put.
      Angegeben von:
      addTo in Schnittstelle Float2ShortMap
      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.
    • subFrom

      public short subFrom(float key, short value)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      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 Float2ShortMap.getDefaultReturnValue() If the fence is reached the element will be automaticall removed
      Angegeben von:
      subFrom in Schnittstelle Float2ShortMap
      Parameter:
      key - that should be subtract from
      value - that should be subtract
      Gibt zurück:
      the last present or default return value
    • comparator

      public FloatComparator comparator()
      Angegeben von:
      comparator in Schnittstelle Float2ShortSortedMap
      Angegeben von:
      comparator in Schnittstelle SortedMap<Float,Short>
    • containsKey

      public boolean containsKey(float key)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      Type Specific method to reduce boxing/unboxing of values
      Angegeben von:
      containsKey in Schnittstelle Float2ShortMap
      Setzt außer Kraft:
      containsKey in Klasse AbstractFloat2ShortMap
      Parameter:
      key - element that is searched for
      Gibt zurück:
      if the key is present
    • get

      public short get(float key)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      A Type Specific get method to reduce boxing/unboxing
      Angegeben von:
      get in Schnittstelle Float2ShortMap
      Parameter:
      key - the key that is searched for
      Gibt zurück:
      the searched value or default return value
    • getOrDefault

      public short getOrDefault(float key, short defaultValue)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      A Type Specific getOrDefault method to reduce boxing/unboxing
      Angegeben von:
      getOrDefault in Schnittstelle Float2ShortMap
      Setzt außer Kraft:
      getOrDefault in Klasse AbstractFloat2ShortMap
      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
    • firstFloatKey

      public float firstFloatKey()
      Beschreibung aus Schnittstelle kopiert: Float2ShortSortedMap
      A method to get the first Key of a Map.
      Angegeben von:
      firstFloatKey in Schnittstelle Float2ShortSortedMap
      Gibt zurück:
      the first key in the map
    • pollFirstFloatKey

      public float pollFirstFloatKey()
      Beschreibung aus Schnittstelle kopiert: Float2ShortSortedMap
      A method to get and remove the first Key of a Map.
      Angegeben von:
      pollFirstFloatKey in Schnittstelle Float2ShortSortedMap
      Gibt zurück:
      the first key in the map
    • lastFloatKey

      public float lastFloatKey()
      Beschreibung aus Schnittstelle kopiert: Float2ShortSortedMap
      A method to get the last Key of a Map.
      Angegeben von:
      lastFloatKey in Schnittstelle Float2ShortSortedMap
      Gibt zurück:
      the last key in the map
    • pollLastFloatKey

      public float pollLastFloatKey()
      Beschreibung aus Schnittstelle kopiert: Float2ShortSortedMap
      A method to get and remove the last Key of a Map.
      Angegeben von:
      pollLastFloatKey in Schnittstelle Float2ShortSortedMap
      Gibt zurück:
      the last key in the map
    • firstEntry

      public Float2ShortMap.Entry firstEntry()
      Angegeben von:
      firstEntry in Schnittstelle Float2ShortNavigableMap
      Angegeben von:
      firstEntry in Schnittstelle NavigableMap<Float,Short>
      Gibt zurück:
      a Type Specific firstEntry
    • lastEntry

      public Float2ShortMap.Entry lastEntry()
      Angegeben von:
      lastEntry in Schnittstelle Float2ShortNavigableMap
      Angegeben von:
      lastEntry in Schnittstelle NavigableMap<Float,Short>
      Gibt zurück:
      a Type Specific lastEntry
    • pollFirstEntry

      public Float2ShortMap.Entry pollFirstEntry()
      Angegeben von:
      pollFirstEntry in Schnittstelle Float2ShortNavigableMap
      Angegeben von:
      pollFirstEntry in Schnittstelle NavigableMap<Float,Short>
      Gibt zurück:
      a Type Specific pollFirstEntry
    • pollLastEntry

      public Float2ShortMap.Entry pollLastEntry()
      Angegeben von:
      pollLastEntry in Schnittstelle Float2ShortNavigableMap
      Angegeben von:
      pollLastEntry in Schnittstelle NavigableMap<Float,Short>
      Gibt zurück:
      a Type Specific pollLastEntry
    • firstShortValue

      public short firstShortValue()
      Beschreibung aus Schnittstelle kopiert: Float2ShortSortedMap
      A method to get the first Value of a Map.
      Angegeben von:
      firstShortValue in Schnittstelle Float2ShortSortedMap
      Gibt zurück:
      the first key in the map
    • lastShortValue

      public short lastShortValue()
      Beschreibung aus Schnittstelle kopiert: Float2ShortSortedMap
      A method to get the last Value of a Map.
      Angegeben von:
      lastShortValue in Schnittstelle Float2ShortSortedMap
      Gibt zurück:
      the last key in the map
    • remove

      public short remove(float key)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      Type Specific remove function to reduce boxing/unboxing
      Angegeben von:
      remove in Schnittstelle Float2ShortMap
      Parameter:
      key - the element that should be removed
      Gibt zurück:
      the value that was removed or default return value
    • removeOrDefault

      public short removeOrDefault(float key, short defaultValue)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      Type-Specific Remove function with a default return value if wanted.
      Angegeben von:
      removeOrDefault in Schnittstelle Float2ShortMap
      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:
    • remove

      public boolean remove(float key, short value)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      Type Specific remove function to reduce boxing/unboxing
      Angegeben von:
      remove in Schnittstelle Float2ShortMap
      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:
    • replace

      public boolean replace(float key, short oldValue, short newValue)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      A Type Specific replace method to replace an existing value
      Angegeben von:
      replace in Schnittstelle Float2ShortMap
      Setzt außer Kraft:
      replace in Klasse AbstractFloat2ShortMap
      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
    • replace

      public short replace(float key, short value)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      A Type Specific replace method to reduce boxing/unboxing replace an existing value
      Angegeben von:
      replace in Schnittstelle Float2ShortMap
      Setzt außer Kraft:
      replace in Klasse AbstractFloat2ShortMap
      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
    • computeShort

      public short computeShort(float key, FloatShortUnaryOperator mappingFunction)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      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.
      Angegeben von:
      computeShort in Schnittstelle Float2ShortMap
      Setzt außer Kraft:
      computeShort in Klasse AbstractFloat2ShortMap
      Parameter:
      key - the key that should be computed
      mappingFunction - the operator that should generate the value
      Gibt zurück:
      the result of the computation
    • computeShortIfAbsent

      public short computeShortIfAbsent(float key, Float2ShortFunction mappingFunction)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      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.
      Angegeben von:
      computeShortIfAbsent in Schnittstelle Float2ShortMap
      Setzt außer Kraft:
      computeShortIfAbsent in Klasse AbstractFloat2ShortMap
      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
    • supplyShortIfAbsent

      public short supplyShortIfAbsent(float key, ShortSupplier valueProvider)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      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.
      Angegeben von:
      supplyShortIfAbsent in Schnittstelle Float2ShortMap
      Setzt außer Kraft:
      supplyShortIfAbsent in Klasse AbstractFloat2ShortMap
      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
    • computeShortIfPresent

      public short computeShortIfPresent(float key, FloatShortUnaryOperator mappingFunction)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      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.
      Angegeben von:
      computeShortIfPresent in Schnittstelle Float2ShortMap
      Setzt außer Kraft:
      computeShortIfPresent in Klasse AbstractFloat2ShortMap
      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
    • computeShortNonDefault

      public short computeShortNonDefault(float key, FloatShortUnaryOperator mappingFunction)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      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.
      Angegeben von:
      computeShortNonDefault in Schnittstelle Float2ShortMap
      Setzt außer Kraft:
      computeShortNonDefault in Klasse AbstractFloat2ShortMap
      Parameter:
      key - the key that should be computed
      mappingFunction - the operator that should generate the value
      Gibt zurück:
      the result of the computation
    • computeShortIfAbsentNonDefault

      public short computeShortIfAbsentNonDefault(float key, Float2ShortFunction mappingFunction)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      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.
      Angegeben von:
      computeShortIfAbsentNonDefault in Schnittstelle Float2ShortMap
      Setzt außer Kraft:
      computeShortIfAbsentNonDefault in Klasse AbstractFloat2ShortMap
      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
    • supplyShortIfAbsentNonDefault

      public short supplyShortIfAbsentNonDefault(float key, ShortSupplier valueProvider)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      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.
      Angegeben von:
      supplyShortIfAbsentNonDefault in Schnittstelle Float2ShortMap
      Setzt außer Kraft:
      supplyShortIfAbsentNonDefault in Klasse AbstractFloat2ShortMap
      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
    • computeShortIfPresentNonDefault

      public short computeShortIfPresentNonDefault(float key, FloatShortUnaryOperator mappingFunction)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      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.
      Angegeben von:
      computeShortIfPresentNonDefault in Schnittstelle Float2ShortMap
      Setzt außer Kraft:
      computeShortIfPresentNonDefault in Klasse AbstractFloat2ShortMap
      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
    • mergeShort

      public short mergeShort(float key, short value, ShortShortUnaryOperator mappingFunction)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      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.
      Angegeben von:
      mergeShort in Schnittstelle Float2ShortMap
      Setzt außer Kraft:
      mergeShort in Klasse AbstractFloat2ShortMap
      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
    • mergeAllShort

      public void mergeAllShort(Float2ShortMap m, ShortShortUnaryOperator mappingFunction)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      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.
      Angegeben von:
      mergeAllShort in Schnittstelle Float2ShortMap
      Setzt außer Kraft:
      mergeAllShort in Klasse AbstractFloat2ShortMap
      Parameter:
      m - the entries that should be bulk added
      mappingFunction - the operator that should generate the new Value
    • forEach

      public void forEach(FloatShortConsumer action)
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      Type Specific forEach method to reduce boxing/unboxing
      Angegeben von:
      forEach in Schnittstelle Float2ShortMap
      Setzt außer Kraft:
      forEach in Klasse AbstractFloat2ShortMap
      Parameter:
      action - processor of the values that are iterator over
    • size

      public int size()
      Angegeben von:
      size in Schnittstelle Map<Float,Short>
      Setzt außer Kraft:
      size in Klasse AbstractMap<Float,Short>
    • clear

      public void clear()
      Angegeben von:
      clear in Schnittstelle Map<Float,Short>
      Setzt außer Kraft:
      clear in Klasse AbstractMap<Float,Short>
    • copy

      public Float2ShortAVLTreeMap copy()
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      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
      Angegeben von:
      copy in Schnittstelle Float2ShortMap
      Angegeben von:
      copy in Schnittstelle Float2ShortNavigableMap
      Angegeben von:
      copy in Schnittstelle Float2ShortSortedMap
      Setzt außer Kraft:
      copy in Klasse AbstractFloat2ShortMap
      Gibt zurück:
      a Shallow Copy of the Map
    • keySet

      public FloatNavigableSet keySet()
      Angegeben von:
      keySet in Schnittstelle Float2ShortMap
      Angegeben von:
      keySet in Schnittstelle Float2ShortNavigableMap
      Angegeben von:
      keySet in Schnittstelle Float2ShortSortedMap
      Angegeben von:
      keySet in Schnittstelle Map<Float,Short>
      Angegeben von:
      keySet in Schnittstelle SortedMap<Float,Short>
      Setzt außer Kraft:
      keySet in Klasse AbstractFloat2ShortMap
      Gibt zurück:
      a Type Specific Navigable Key Set
    • float2ShortEntrySet

      public ObjectSet<Float2ShortMap.Entry> float2ShortEntrySet()
      Beschreibung aus Schnittstelle kopiert: Float2ShortMap
      Type Sensitive EntrySet to reduce boxing/unboxing and optionally Temp Object Allocation.
      Angegeben von:
      float2ShortEntrySet in Schnittstelle Float2ShortMap
      Gibt zurück:
      a EntrySet of the collection
    • values

      public ShortCollection values()
      Angegeben von:
      values in Schnittstelle Float2ShortMap
      Angegeben von:
      values in Schnittstelle Float2ShortSortedMap
      Angegeben von:
      values in Schnittstelle Map<Float,Short>
      Angegeben von:
      values in Schnittstelle SortedMap<Float,Short>
      Setzt außer Kraft:
      values in Klasse AbstractFloat2ShortMap
    • descendingMap

      public Float2ShortNavigableMap descendingMap()
      Angegeben von:
      descendingMap in Schnittstelle Float2ShortNavigableMap
      Angegeben von:
      descendingMap in Schnittstelle NavigableMap<Float,Short>
      Gibt zurück:
      a Type Specific desendingMap
    • descendingKeySet

      public FloatNavigableSet descendingKeySet()
      Angegeben von:
      descendingKeySet in Schnittstelle Float2ShortNavigableMap
      Angegeben von:
      descendingKeySet in Schnittstelle NavigableMap<Float,Short>
      Gibt zurück:
      a Type Specific Desending Key Set
    • subMap

      public Float2ShortNavigableMap subMap(float fromKey, boolean fromInclusive, float toKey, boolean toInclusive)
      Beschreibung aus Schnittstelle kopiert: Float2ShortNavigableMap
      A Type Specific SubMap method to reduce boxing/unboxing
      Angegeben von:
      subMap in Schnittstelle Float2ShortNavigableMap
      Parameter:
      fromKey - where the submap should start
      fromInclusive - if the fromKey is inclusive or not
      toKey - where the subMap should end
      toInclusive - if the toKey is inclusive or not
      Gibt zurück:
      a SubMap that is within the range of the desired range
    • headMap

      public Float2ShortNavigableMap headMap(float toKey, boolean inclusive)
      Beschreibung aus Schnittstelle kopiert: Float2ShortNavigableMap
      A Type Specific HeadMap method to reduce boxing/unboxing
      Angegeben von:
      headMap in Schnittstelle Float2ShortNavigableMap
      Parameter:
      toKey - where the HeadMap should end
      inclusive - if the toKey is inclusive or not
      Gibt zurück:
      a HeadMap that is within the range of the desired range
    • tailMap

      public Float2ShortNavigableMap tailMap(float fromKey, boolean inclusive)
      Beschreibung aus Schnittstelle kopiert: Float2ShortNavigableMap
      A Type Specific TailMap method to reduce boxing/unboxing
      Angegeben von:
      tailMap in Schnittstelle Float2ShortNavigableMap
      Parameter:
      fromKey - where the TailMap should start
      inclusive - if the fromKey is inclusive or not
      Gibt zurück:
      a TailMap that is within the range of the desired range
    • lowerKey

      public float lowerKey(float e)
      Beschreibung aus Schnittstelle kopiert: Float2ShortNavigableMap
      A Type Specific lowerKey method to reduce boxing/unboxing.
      Angegeben von:
      lowerKey in Schnittstelle Float2ShortNavigableMap
      Parameter:
      e - that should be compared with.
      Gibt zurück:
      the greatest lower key that can be found
    • floorKey

      public float floorKey(float e)
      Beschreibung aus Schnittstelle kopiert: Float2ShortNavigableMap
      A Type Specific floorKey method to reduce boxing/unboxing.
      Angegeben von:
      floorKey in Schnittstelle Float2ShortNavigableMap
      Parameter:
      e - that should be compared with.
      Gibt zurück:
      the greatest lower or equal key that can be found
    • higherKey

      public float higherKey(float e)
      Beschreibung aus Schnittstelle kopiert: Float2ShortNavigableMap
      A Type Specific higherKey method to reduce boxing/unboxing.
      Angegeben von:
      higherKey in Schnittstelle Float2ShortNavigableMap
      Parameter:
      e - that should be compared with.
      Gibt zurück:
      the lowest higher key that can be found
    • ceilingKey

      public float ceilingKey(float e)
      Beschreibung aus Schnittstelle kopiert: Float2ShortNavigableMap
      A Type Specific ceilingKey method to reduce boxing/unboxing.
      Angegeben von:
      ceilingKey in Schnittstelle Float2ShortNavigableMap
      Parameter:
      e - that should be compared with.
      Gibt zurück:
      the lowest higher or equal key that can be found
    • lowerEntry

      public Float2ShortMap.Entry lowerEntry(float key)
      Beschreibung aus Schnittstelle kopiert: Float2ShortNavigableMap
      A Type Specific lowerEntry method to reduce boxing/unboxing.
      Angegeben von:
      lowerEntry in Schnittstelle Float2ShortNavigableMap
      Parameter:
      key - that should be compared with.
      Gibt zurück:
      the greatest lower entry that can be found, or null
    • higherEntry

      public Float2ShortMap.Entry higherEntry(float key)
      Beschreibung aus Schnittstelle kopiert: Float2ShortNavigableMap
      A Type Specific higherEntry method to reduce boxing/unboxing.
      Angegeben von:
      higherEntry in Schnittstelle Float2ShortNavigableMap
      Parameter:
      key - that should be compared with.
      Gibt zurück:
      the lowest higher entry that can be found, or null
    • floorEntry

      public Float2ShortMap.Entry floorEntry(float key)
      Beschreibung aus Schnittstelle kopiert: Float2ShortNavigableMap
      A Type Specific floorEntry method to reduce boxing/unboxing.
      Angegeben von:
      floorEntry in Schnittstelle Float2ShortNavigableMap
      Parameter:
      key - that should be compared with.
      Gibt zurück:
      the greatest lower or equal entry that can be found, or null
    • ceilingEntry

      public Float2ShortMap.Entry ceilingEntry(float key)
      Beschreibung aus Schnittstelle kopiert: Float2ShortNavigableMap
      A Type Specific ceilingEntry method to reduce boxing/unboxing.
      Angegeben von:
      ceilingEntry in Schnittstelle Float2ShortNavigableMap
      Parameter:
      key - that should be compared with.
      Gibt zurück:
      the lowest higher or equal entry that can be found, or null