/* * Written by Doug Lea with assistance from members of JCP JSR-166 * Expert Group and released to the public domain, as explained at * http://creativecommons.org/licenses/publicdomain */ package java.util.concurrent; import java.util.*; /** * A {@link ConcurrentMap} supporting {@link NavigableMap} operations. * *

This interface is a member of the * * Java Collections Framework. * * @author Doug Lea * @param the type of keys maintained by this map * @param the type of mapped values * @since 1.6 */ public interface ConcurrentNavigableMap extends ConcurrentMap, NavigableMap { /** * @throws ClassCastException {@inheritDoc} * @throws IllegalArgumentException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ ConcurrentNavigableMap navigableSubMap(K fromKey, K toKey); /** * @throws ClassCastException {@inheritDoc} * @throws IllegalArgumentException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ ConcurrentNavigableMap navigableHeadMap(K toKey); /** * @throws ClassCastException {@inheritDoc} * @throws IllegalArgumentException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ ConcurrentNavigableMap navigableTailMap(K fromKey); }