Interface Object2IntSortedMap<K>

All Superinterfaces:
Function<K,​java.lang.Integer>, java.util.function.Function<K,​java.lang.Integer>, java.util.Map<K,​java.lang.Integer>, Object2IntFunction<K>, Object2IntMap<K>, java.util.SortedMap<K,​java.lang.Integer>, java.util.function.ToIntFunction<K>
All Known Implementing Classes:
AbstractObject2IntSortedMap, Object2IntAVLTreeMap, Object2IntLinkedOpenCustomHashMap, Object2IntLinkedOpenHashMap, Object2IntRBTreeMap, Object2IntSortedMaps.EmptySortedMap, Object2IntSortedMaps.Singleton, Object2IntSortedMaps.SynchronizedSortedMap, Object2IntSortedMaps.UnmodifiableSortedMap

public interface Object2IntSortedMap<K>
extends Object2IntMap<K>, java.util.SortedMap<K,​java.lang.Integer>
A type-specific SortedMap; provides some additional methods that use polymorphism to avoid (un)boxing.

Additionally, this interface strengthens entrySet(), keySet(), values(), comparator(), SortedMap.subMap(Object,Object), SortedMap.headMap(Object) and SortedMap.tailMap(Object).

See Also:
SortedMap
  • Method Details

    • subMap

      Object2IntSortedMap<K> subMap​(K fromKey, K toKey)
      Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
      Specified by:
      subMap in interface java.util.SortedMap<K,​java.lang.Integer>
      See Also:
      SortedMap.subMap(Object,Object)
      API Notes:
      Note that this specification strengthens the one given in SortedMap.subMap(Object,Object).
    • headMap

      Object2IntSortedMap<K> headMap​(K toKey)
      Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
      Specified by:
      headMap in interface java.util.SortedMap<K,​java.lang.Integer>
      See Also:
      SortedMap.headMap(Object)
      API Notes:
      Note that this specification strengthens the one given in SortedMap.headMap(Object).
    • tailMap

      Object2IntSortedMap<K> tailMap​(K fromKey)
      Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
      Specified by:
      tailMap in interface java.util.SortedMap<K,​java.lang.Integer>
      See Also:
      SortedMap.tailMap(Object)
      API Notes:
      Note that this specification strengthens the one given in SortedMap.tailMap(Object).
    • entrySet

      @Deprecated default ObjectSortedSet<java.util.Map.Entry<K,​java.lang.Integer>> entrySet()
      Deprecated.
      Please use the corresponding type-specific method instead.
      Returns a sorted-set view of the mappings contained in this map.
      Specified by:
      entrySet in interface java.util.Map<K,​java.lang.Integer>
      Specified by:
      entrySet in interface Object2IntMap<K>
      Specified by:
      entrySet in interface java.util.SortedMap<K,​java.lang.Integer>
      Returns:
      a sorted-set view of the mappings contained in this map.
      See Also:
      SortedMap.entrySet()
      API Notes:
      Note that this specification strengthens the one given in the corresponding type-specific unsorted map.
    • object2IntEntrySet

      ObjectSortedSet<Object2IntMap.Entry<K>> object2IntEntrySet()
      Returns a type-specific sorted-set view of the mappings contained in this map.
      Specified by:
      object2IntEntrySet in interface Object2IntMap<K>
      Returns:
      a type-specific sorted-set view of the mappings contained in this map.
      See Also:
      entrySet()
      API Notes:
      Note that this specification strengthens the one given in the corresponding type-specific unsorted map.
    • keySet

      ObjectSortedSet<K> keySet()
      Returns a type-specific sorted-set view of the keys contained in this map.
      Specified by:
      keySet in interface java.util.Map<K,​java.lang.Integer>
      Specified by:
      keySet in interface Object2IntMap<K>
      Specified by:
      keySet in interface java.util.SortedMap<K,​java.lang.Integer>
      Returns:
      a sorted-set view of the keys contained in this map.
      See Also:
      SortedMap.keySet()
      API Notes:
      Note that this specification strengthens the one given in the corresponding type-specific unsorted map.
    • values

      IntCollection values()
      Returns a type-specific set view of the values contained in this map.
      Specified by:
      values in interface java.util.Map<K,​java.lang.Integer>
      Specified by:
      values in interface Object2IntMap<K>
      Specified by:
      values in interface java.util.SortedMap<K,​java.lang.Integer>
      Returns:
      a set view of the values contained in this map.
      See Also:
      SortedMap.values()
      API Notes:
      Note that this specification strengthens the one given in Map.values(), which was already strengthened in the corresponding type-specific class, but was weakened by the fact that this interface extends SortedMap.
    • comparator

      java.util.Comparator<? super K> comparator()
      Returns the comparator associated with this sorted set, or null if it uses its keys' natural ordering.
      Specified by:
      comparator in interface java.util.SortedMap<K,​java.lang.Integer>
      See Also:
      SortedMap.comparator()
      API Notes:
      Note that this specification strengthens the one given in SortedMap.comparator().