Interface Char2ByteSortedMap

    • Method Detail

      • subMap

        Char2ByteSortedMap subMap​(char fromKey,
                                  char toKey)
        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).

        See Also:
        SortedMap.subMap(Object,Object)
      • headMap

        Char2ByteSortedMap headMap​(char toKey)
        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).

        See Also:
        SortedMap.headMap(Object)
      • tailMap

        Char2ByteSortedMap tailMap​(char fromKey)
        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).

        See Also:
        SortedMap.tailMap(Object)
      • firstCharKey

        char firstCharKey()
        Returns the first (lowest) key currently in this map.
        See Also:
        SortedMap.firstKey()
      • lastCharKey

        char lastCharKey()
        Returns the last (highest) key currently in this map.
        See Also:
        SortedMap.lastKey()
      • subMap

        @Deprecated
        default Char2ByteSortedMap subMap​(java.lang.Character from,
                                          java.lang.Character to)
        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 java.util.SortedMap<java.lang.Character,​java.lang.Byte>
      • headMap

        @Deprecated
        default Char2ByteSortedMap headMap​(java.lang.Character to)
        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 java.util.SortedMap<java.lang.Character,​java.lang.Byte>
      • tailMap

        @Deprecated
        default Char2ByteSortedMap tailMap​(java.lang.Character from)
        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 java.util.SortedMap<java.lang.Character,​java.lang.Byte>
      • firstKey

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

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

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

        Note that this specification strengthens the one given in the corresponding type-specific unsorted map.

        Specified by:
        entrySet in interface Char2ByteMap
        Specified by:
        entrySet in interface java.util.Map<java.lang.Character,​java.lang.Byte>
        Specified by:
        entrySet in interface java.util.SortedMap<java.lang.Character,​java.lang.Byte>
        Returns:
        a sorted-set view of the mappings contained in this map.
        See Also:
        SortedMap.entrySet()
      • char2ByteEntrySet

        ObjectSortedSet<Char2ByteMap.Entry> char2ByteEntrySet()
        Returns a type-specific sorted-set view of the mappings contained in this map.

        Note that this specification strengthens the one given in the corresponding type-specific unsorted map.

        Specified by:
        char2ByteEntrySet in interface Char2ByteMap
        Returns:
        a type-specific sorted-set view of the mappings contained in this map.
        See Also:
        entrySet()
      • keySet

        CharSortedSet keySet()
        Returns a type-specific sorted-set view of the keys contained in this map.

        Note that this specification strengthens the one given in the corresponding type-specific unsorted map.

        Specified by:
        keySet in interface Char2ByteMap
        Specified by:
        keySet in interface java.util.Map<java.lang.Character,​java.lang.Byte>
        Specified by:
        keySet in interface java.util.SortedMap<java.lang.Character,​java.lang.Byte>
        Returns:
        a sorted-set view of the keys contained in this map.
        See Also:
        SortedMap.keySet()
      • values

        ByteCollection values()
        Returns a type-specific set view of the values contained in this map.

        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.

        Specified by:
        values in interface Char2ByteMap
        Specified by:
        values in interface java.util.Map<java.lang.Character,​java.lang.Byte>
        Specified by:
        values in interface java.util.SortedMap<java.lang.Character,​java.lang.Byte>
        Returns:
        a set view of the values contained in this map.
        See Also:
        SortedMap.values()
      • comparator

        CharComparator comparator()
        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 java.util.SortedMap<java.lang.Character,​java.lang.Byte>
        See Also:
        SortedMap.comparator()