Class Int2ObjectSortedMaps.EmptySortedMap<V>

  • All Implemented Interfaces:
    Function<java.lang.Integer,​V>, Int2ObjectFunction<V>, Int2ObjectMap<V>, Int2ObjectSortedMap<V>, java.io.Serializable, java.lang.Cloneable, java.util.function.Function<java.lang.Integer,​V>, java.util.function.IntFunction<V>, java.util.Map<java.lang.Integer,​V>, java.util.SortedMap<java.lang.Integer,​V>
    Enclosing class:
    Int2ObjectSortedMaps

    public static class Int2ObjectSortedMaps.EmptySortedMap<V>
    extends Int2ObjectMaps.EmptyMap<V>
    implements Int2ObjectSortedMap<V>, java.io.Serializable, java.lang.Cloneable
    An immutable class representing an empty type-specific sorted map.

    This class may be useful to implement your own in case you subclass a type-specific sorted map.

    See Also:
    Serialized Form
    • Method Detail

      • comparator

        public IntComparator comparator()
        Description copied from interface: Int2ObjectSortedMap
        Returns the comparator associated with this sorted set, or null if it uses its keys' natural ordering.
        Specified by:
        comparator in interface Int2ObjectSortedMap<V>
        Specified by:
        comparator in interface java.util.SortedMap<java.lang.Integer,​V>
        See Also:
        SortedMap.comparator()
      • entrySet

        @Deprecated
        public ObjectSortedSet<java.util.Map.Entry<java.lang.Integer,​V>> 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 Int2ObjectMap<V>
        Specified by:
        entrySet in interface Int2ObjectSortedMap<V>
        Specified by:
        entrySet in interface java.util.Map<java.lang.Integer,​V>
        Specified by:
        entrySet in interface java.util.SortedMap<java.lang.Integer,​V>
        Returns:
        a sorted-set view of the mappings contained in this map.
        See Also:
        SortedMap.entrySet()
      • subMap

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

        @Deprecated
        public Int2ObjectSortedMap<V> headMap​(java.lang.Integer oto)
        Deprecated.
        Please use the corresponding type-specific method instead.
        Specified by:
        headMap in interface Int2ObjectSortedMap<V>
        Specified by:
        headMap in interface java.util.SortedMap<java.lang.Integer,​V>
      • tailMap

        @Deprecated
        public Int2ObjectSortedMap<V> tailMap​(java.lang.Integer ofrom)
        Deprecated.
        Please use the corresponding type-specific method instead.
        Specified by:
        tailMap in interface Int2ObjectSortedMap<V>
        Specified by:
        tailMap in interface java.util.SortedMap<java.lang.Integer,​V>
      • subMap

        @Deprecated
        public Int2ObjectSortedMap<V> subMap​(java.lang.Integer ofrom,
                                             java.lang.Integer oto)
        Deprecated.
        Please use the corresponding type-specific method instead.
        Specified by:
        subMap in interface Int2ObjectSortedMap<V>
        Specified by:
        subMap in interface java.util.SortedMap<java.lang.Integer,​V>
      • firstKey

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

        @Deprecated
        public java.lang.Integer lastKey()
        Deprecated.
        Please use the corresponding type-specific method instead.
        Specified by:
        lastKey in interface Int2ObjectSortedMap<V>
        Specified by:
        lastKey in interface java.util.SortedMap<java.lang.Integer,​V>