Class Char2ObjectSortedMaps.Singleton<V>

  • All Implemented Interfaces:
    Char2ObjectFunction<V>, Char2ObjectMap<V>, Char2ObjectSortedMap<V>, Function<java.lang.Character,​V>, java.io.Serializable, java.lang.Cloneable, java.util.function.Function<java.lang.Character,​V>, java.util.function.IntFunction<V>, java.util.Map<java.lang.Character,​V>, java.util.SortedMap<java.lang.Character,​V>
    Enclosing class:
    Char2ObjectSortedMaps

    public static class Char2ObjectSortedMaps.Singleton<V>
    extends Char2ObjectMaps.Singleton<V>
    implements Char2ObjectSortedMap<V>, java.io.Serializable, java.lang.Cloneable
    An immutable class representing a type-specific singleton 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 CharComparator comparator()
        Description copied from interface: Char2ObjectSortedMap
        Returns the comparator associated with this sorted set, or null if it uses its keys' natural ordering.

        Note that this specification strengthens the one given in SortedMap.comparator().

        Specified by:
        comparator in interface Char2ObjectSortedMap<V>
        Specified by:
        comparator in interface java.util.SortedMap<java.lang.Character,​V>
        See Also:
        SortedMap.comparator()
      • entrySet

        @Deprecated
        public ObjectSortedSet<java.util.Map.Entry<java.lang.Character,​V>> entrySet()
        Deprecated.
        Please use the corresponding type-specific method instead.
        Returns a set view of the mappings contained in this map.

        Note that this specification strengthens the one given in Map.entrySet().

        Specified by:
        entrySet in interface Char2ObjectMap<V>
        Specified by:
        entrySet in interface Char2ObjectSortedMap<V>
        Specified by:
        entrySet in interface java.util.Map<java.lang.Character,​V>
        Specified by:
        entrySet in interface java.util.SortedMap<java.lang.Character,​V>
        Overrides:
        entrySet in class Char2ObjectMaps.Singleton<V>
        Returns:
        a set view of the mappings contained in this map.
        See Also:
        Map.entrySet()
      • keySet

        public CharSortedSet keySet()
        Description copied from interface: Char2ObjectMap

        Note that this specification strengthens the one given in Map.keySet().

        Specified by:
        keySet in interface Char2ObjectMap<V>
        Specified by:
        keySet in interface Char2ObjectSortedMap<V>
        Specified by:
        keySet in interface java.util.Map<java.lang.Character,​V>
        Specified by:
        keySet in interface java.util.SortedMap<java.lang.Character,​V>
        Overrides:
        keySet in class Char2ObjectMaps.Singleton<V>
        Returns:
        a set view of the keys contained in this map.
        See Also:
        Map.keySet()
      • subMap

        public Char2ObjectSortedMap<V> subMap​(char from,
                                              char to)
        Description copied from interface: Char2ObjectSortedMap
        Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.

        Note that this specification strengthens the one given in SortedMap.subMap(Object,Object).

        Specified by:
        subMap in interface Char2ObjectSortedMap<V>
        See Also:
        SortedMap.subMap(Object,Object)
      • headMap

        public Char2ObjectSortedMap<V> headMap​(char to)
        Description copied from interface: Char2ObjectSortedMap
        Returns a view of the portion of this sorted map whose keys are strictly less than toKey.

        Note that this specification strengthens the one given in SortedMap.headMap(Object).

        Specified by:
        headMap in interface Char2ObjectSortedMap<V>
        See Also:
        SortedMap.headMap(Object)
      • tailMap

        public Char2ObjectSortedMap<V> tailMap​(char from)
        Description copied from interface: Char2ObjectSortedMap
        Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.

        Note that this specification strengthens the one given in SortedMap.tailMap(Object).

        Specified by:
        tailMap in interface Char2ObjectSortedMap<V>
        See Also:
        SortedMap.tailMap(Object)
      • headMap

        @Deprecated
        public Char2ObjectSortedMap<V> headMap​(java.lang.Character oto)
        Deprecated.
        Please use the corresponding type-specific method instead.

        Note that this specification strengthens the one given in SortedMap.headMap(Object).

        Specified by:
        headMap in interface Char2ObjectSortedMap<V>
        Specified by:
        headMap in interface java.util.SortedMap<java.lang.Character,​V>
      • tailMap

        @Deprecated
        public Char2ObjectSortedMap<V> tailMap​(java.lang.Character ofrom)
        Deprecated.
        Please use the corresponding type-specific method instead.

        Note that this specification strengthens the one given in SortedMap.tailMap(Object).

        Specified by:
        tailMap in interface Char2ObjectSortedMap<V>
        Specified by:
        tailMap in interface java.util.SortedMap<java.lang.Character,​V>
      • subMap

        @Deprecated
        public Char2ObjectSortedMap<V> subMap​(java.lang.Character ofrom,
                                              java.lang.Character oto)
        Deprecated.
        Please use the corresponding type-specific method instead.

        Note that this specification strengthens the one given in SortedMap.subMap(Object,Object).

        Specified by:
        subMap in interface Char2ObjectSortedMap<V>
        Specified by:
        subMap in interface java.util.SortedMap<java.lang.Character,​V>
      • firstKey

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

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