Interface Object2ByteSortedMap<K>

    • Method Detail

      • subMap

        Object2ByteSortedMap<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.

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

        Specified by:
        subMap in interface java.util.SortedMap<K,​java.lang.Byte>
        See Also:
        SortedMap.subMap(Object,Object)
      • headMap

        Object2ByteSortedMap<K> headMap​(K 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).

        Specified by:
        headMap in interface java.util.SortedMap<K,​java.lang.Byte>
        See Also:
        SortedMap.headMap(Object)
      • tailMap

        Object2ByteSortedMap<K> tailMap​(K 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).

        Specified by:
        tailMap in interface java.util.SortedMap<K,​java.lang.Byte>
        See Also:
        SortedMap.tailMap(Object)
      • entrySet

        @Deprecated
        default ObjectSortedSet<java.util.Map.Entry<K,​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 java.util.Map<K,​java.lang.Byte>
        Specified by:
        entrySet in interface Object2ByteMap<K>
        Specified by:
        entrySet in interface java.util.SortedMap<K,​java.lang.Byte>
        Returns:
        a sorted-set view of the mappings contained in this map.
        See Also:
        SortedMap.entrySet()
      • object2ByteEntrySet

        ObjectSortedSet<Object2ByteMap.Entry<K>> object2ByteEntrySet()
        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:
        object2ByteEntrySet in interface Object2ByteMap<K>
        Returns:
        a type-specific sorted-set view of the mappings contained in this map.
        See Also:
        entrySet()
      • keySet

        ObjectSortedSet<K> 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 java.util.Map<K,​java.lang.Byte>
        Specified by:
        keySet in interface Object2ByteMap<K>
        Specified by:
        keySet in interface java.util.SortedMap<K,​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 java.util.Map<K,​java.lang.Byte>
        Specified by:
        values in interface Object2ByteMap<K>
        Specified by:
        values in interface java.util.SortedMap<K,​java.lang.Byte>
        Returns:
        a set view of the values contained in this map.
        See Also:
        SortedMap.values()
      • comparator

        java.util.Comparator<? super K> 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<K,​java.lang.Byte>
        See Also:
        SortedMap.comparator()