Class Double2ObjectRBTreeMap<V>

All Implemented Interfaces:
Double2ObjectFunction<V>, Double2ObjectMap<V>, Double2ObjectSortedMap<V>, Function<java.lang.Double,​V>, java.io.Serializable, java.lang.Cloneable, java.util.function.DoubleFunction<V>, java.util.function.Function<java.lang.Double,​V>, java.util.Map<java.lang.Double,​V>, java.util.SortedMap<java.lang.Double,​V>

public class Double2ObjectRBTreeMap<V>
extends AbstractDouble2ObjectSortedMap<V>
implements java.io.Serializable, java.lang.Cloneable
A type-specific red-black tree map with a fast, small-footprint implementation.

The iterators provided by the views of this class are type-specific bidirectional iterators. Moreover, the iterator returned by iterator() can be safely cast to a type-specific list iterator.

See Also:
Serialized Form
  • Constructor Details

    • Double2ObjectRBTreeMap

      public Double2ObjectRBTreeMap()
      Creates a new empty tree map.
    • Double2ObjectRBTreeMap

      public Double2ObjectRBTreeMap​(java.util.Comparator<? super java.lang.Double> c)
      Creates a new empty tree map with the given comparator.
      Parameters:
      c - a (possibly type-specific) comparator.
    • Double2ObjectRBTreeMap

      public Double2ObjectRBTreeMap​(java.util.Map<? extends java.lang.Double,​? extends V> m)
      Creates a new tree map copying a given map.
      Parameters:
      m - a Map to be copied into the new tree map.
    • Double2ObjectRBTreeMap

      public Double2ObjectRBTreeMap​(java.util.SortedMap<java.lang.Double,​V> m)
      Creates a new tree map copying a given sorted map (and its Comparator).
      Parameters:
      m - a SortedMap to be copied into the new tree map.
    • Double2ObjectRBTreeMap

      public Double2ObjectRBTreeMap​(Double2ObjectMap<? extends V> m)
      Creates a new tree map copying a given map.
      Parameters:
      m - a type-specific map to be copied into the new tree map.
    • Double2ObjectRBTreeMap

      public Double2ObjectRBTreeMap​(Double2ObjectSortedMap<V> m)
      Creates a new tree map copying a given sorted map (and its Comparator).
      Parameters:
      m - a type-specific sorted map to be copied into the new tree map.
    • Double2ObjectRBTreeMap

      public Double2ObjectRBTreeMap​(double[] k, V[] v, java.util.Comparator<? super java.lang.Double> c)
      Creates a new tree map using the elements of two parallel arrays and the given comparator.
      Parameters:
      k - the array of keys of the new tree map.
      v - the array of corresponding values in the new tree map.
      c - a (possibly type-specific) comparator.
      Throws:
      java.lang.IllegalArgumentException - if k and v have different lengths.
    • Double2ObjectRBTreeMap

      public Double2ObjectRBTreeMap​(double[] k, V[] v)
      Creates a new tree map using the elements of two parallel arrays.
      Parameters:
      k - the array of keys of the new tree map.
      v - the array of corresponding values in the new tree map.
      Throws:
      java.lang.IllegalArgumentException - if k and v have different lengths.
  • Method Details