Class Double2BooleanSortedMaps.UnmodifiableSortedMap

All Implemented Interfaces:
Double2BooleanFunction, Double2BooleanMap, Double2BooleanSortedMap, it.unimi.dsi.fastutil.Function<java.lang.Double,​java.lang.Boolean>, java.io.Serializable, java.util.function.DoublePredicate, java.util.function.Function<java.lang.Double,​java.lang.Boolean>, java.util.Map<java.lang.Double,​java.lang.Boolean>, java.util.SortedMap<java.lang.Double,​java.lang.Boolean>
Enclosing class:
Double2BooleanSortedMaps

public static class Double2BooleanSortedMaps.UnmodifiableSortedMap
extends Double2BooleanMaps.UnmodifiableMap
implements Double2BooleanSortedMap, java.io.Serializable
An unmodifiable wrapper class for sorted maps.
See Also:
Serialized Form
  • Method Details

    • comparator

      public it.unimi.dsi.fastutil.doubles.DoubleComparator comparator()
      Description copied from interface: Double2BooleanSortedMap
      Returns the comparator associated with this sorted set, or null if it uses its keys' natural ordering.
      Specified by:
      comparator in interface Double2BooleanSortedMap
      Specified by:
      comparator in interface java.util.SortedMap<java.lang.Double,​java.lang.Boolean>
      See Also:
      SortedMap.comparator()
    • double2BooleanEntrySet

      public it.unimi.dsi.fastutil.objects.ObjectSortedSet<Double2BooleanMap.Entry> double2BooleanEntrySet()
      Description copied from interface: Double2BooleanMap
      Returns a type-specific set view of the mappings contained in this map.

      This method is necessary because there is no inheritance along type parameters: it is thus impossible to strengthen Map.entrySet() so that it returns an ObjectSet of type-specific entries (the latter makes it possible to access keys and values with type-specific methods).

      Specified by:
      double2BooleanEntrySet in interface Double2BooleanMap
      Specified by:
      double2BooleanEntrySet in interface Double2BooleanSortedMap
      Overrides:
      double2BooleanEntrySet in class Double2BooleanMaps.UnmodifiableMap
      Returns:
      a type-specific set view of the mappings contained in this map.
      See Also:
      Map.entrySet()
    • entrySet

      @Deprecated public it.unimi.dsi.fastutil.objects.ObjectSortedSet<java.util.Map.Entry<java.lang.Double,​java.lang.Boolean>> entrySet()
      Deprecated.
      Please use the corresponding type-specific method instead.
      Returns a set view of the mappings contained in this map.
      Specified by:
      entrySet in interface Double2BooleanMap
      Specified by:
      entrySet in interface Double2BooleanSortedMap
      Specified by:
      entrySet in interface java.util.Map<java.lang.Double,​java.lang.Boolean>
      Specified by:
      entrySet in interface java.util.SortedMap<java.lang.Double,​java.lang.Boolean>
      Overrides:
      entrySet in class Double2BooleanMaps.UnmodifiableMap
      Returns:
      a set view of the mappings contained in this map.
      See Also:
      Map.entrySet()
    • keySet

      public it.unimi.dsi.fastutil.doubles.DoubleSortedSet keySet()
      Description copied from interface: Double2BooleanMap
      Specified by:
      keySet in interface Double2BooleanMap
      Specified by:
      keySet in interface Double2BooleanSortedMap
      Specified by:
      keySet in interface java.util.Map<java.lang.Double,​java.lang.Boolean>
      Specified by:
      keySet in interface java.util.SortedMap<java.lang.Double,​java.lang.Boolean>
      Overrides:
      keySet in class Double2BooleanMaps.UnmodifiableMap
      Returns:
      a set view of the keys contained in this map.
      See Also:
      Map.keySet()
    • subMap

      public Double2BooleanSortedMap subMap​(double from, double to)
      Description copied from interface: Double2BooleanSortedMap
      Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
      Specified by:
      subMap in interface Double2BooleanSortedMap
      See Also:
      SortedMap.subMap(Object,Object)
    • headMap

      public Double2BooleanSortedMap headMap​(double to)
      Description copied from interface: Double2BooleanSortedMap
      Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
      Specified by:
      headMap in interface Double2BooleanSortedMap
      See Also:
      SortedMap.headMap(Object)
    • tailMap

      public Double2BooleanSortedMap tailMap​(double from)
      Description copied from interface: Double2BooleanSortedMap
      Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
      Specified by:
      tailMap in interface Double2BooleanSortedMap
      See Also:
      SortedMap.tailMap(Object)
    • firstDoubleKey

      public double firstDoubleKey()
      Description copied from interface: Double2BooleanSortedMap
      Returns the first (lowest) key currently in this map.
      Specified by:
      firstDoubleKey in interface Double2BooleanSortedMap
      See Also:
      SortedMap.firstKey()
    • lastDoubleKey

      public double lastDoubleKey()
      Description copied from interface: Double2BooleanSortedMap
      Returns the last (highest) key currently in this map.
      Specified by:
      lastDoubleKey in interface Double2BooleanSortedMap
      See Also:
      SortedMap.lastKey()
    • firstKey

      @Deprecated public java.lang.Double firstKey()
      Deprecated.
      Please use the corresponding type-specific method instead.
      Specified by:
      firstKey in interface Double2BooleanSortedMap
      Specified by:
      firstKey in interface java.util.SortedMap<java.lang.Double,​java.lang.Boolean>
    • lastKey

      @Deprecated public java.lang.Double lastKey()
      Deprecated.
      Please use the corresponding type-specific method instead.
      Specified by:
      lastKey in interface Double2BooleanSortedMap
      Specified by:
      lastKey in interface java.util.SortedMap<java.lang.Double,​java.lang.Boolean>
    • subMap

      @Deprecated public Double2BooleanSortedMap subMap​(java.lang.Double from, java.lang.Double to)
      Deprecated.
      Please use the corresponding type-specific method instead.
      Specified by:
      subMap in interface Double2BooleanSortedMap
      Specified by:
      subMap in interface java.util.SortedMap<java.lang.Double,​java.lang.Boolean>
    • headMap

      @Deprecated public Double2BooleanSortedMap headMap​(java.lang.Double to)
      Deprecated.
      Please use the corresponding type-specific method instead.
      Specified by:
      headMap in interface Double2BooleanSortedMap
      Specified by:
      headMap in interface java.util.SortedMap<java.lang.Double,​java.lang.Boolean>
    • tailMap

      @Deprecated public Double2BooleanSortedMap tailMap​(java.lang.Double from)
      Deprecated.
      Please use the corresponding type-specific method instead.
      Specified by:
      tailMap in interface Double2BooleanSortedMap
      Specified by:
      tailMap in interface java.util.SortedMap<java.lang.Double,​java.lang.Boolean>