jdk/src/java.base/share/classes/java/util/SortedMap.java
changeset 44743 f0bbd698c486
parent 25859 3317bb8137f4
equal deleted inserted replaced
44677:86328fca16ae 44743:f0bbd698c486
    91  * view containing all of the key-value mappings in {@code m} whose keys
    91  * view containing all of the key-value mappings in {@code m} whose keys
    92  * are between {@code low} and {@code high}, exclusive:<pre>
    92  * are between {@code low} and {@code high}, exclusive:<pre>
    93  *   SortedMap&lt;String, V&gt; sub = m.subMap(low+"\0", high);</pre>
    93  *   SortedMap&lt;String, V&gt; sub = m.subMap(low+"\0", high);</pre>
    94  *
    94  *
    95  * <p>This interface is a member of the
    95  * <p>This interface is a member of the
    96  * <a href="{@docRoot}/../technotes/guides/collections/index.html">
    96  * <a href="{@docRoot}/java/util/package-summary.html#CollectionsFramework">
    97  * Java Collections Framework</a>.
    97  * Java Collections Framework</a>.
    98  *
    98  *
    99  * @param <K> the type of keys maintained by this map
    99  * @param <K> the type of keys maintained by this map
   100  * @param <V> the type of mapped values
   100  * @param <V> the type of mapped values
   101  *
   101  *