jdk/src/java.base/share/classes/java/util/concurrent/ConcurrentNavigableMap.java
author dl
Wed, 21 Dec 2016 14:26:52 -0800
changeset 42927 1d31e540bfcb
parent 32991 b27c76b82713
child 44743 f0bbd698c486
permissions -rw-r--r--
8170484: Miscellaneous changes imported from jsr166 CVS 2016-12 Reviewed-by: martin, smarks, psandoz
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     6
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     8
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * This file is available under and governed by the GNU General Public
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * License version 2 only, as published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * However, the following notice accompanied the original version of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * file:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * Written by Doug Lea with assistance from members of JCP JSR-166
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * Expert Group and released to the public domain, as explained at
9242
ef138d47df58 7034657: Update Creative Commons license URL in legal notices
dl
parents: 5506
diff changeset
    33
 * http://creativecommons.org/publicdomain/zero/1.0/
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
package java.util.concurrent;
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
    37
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
    38
import java.util.NavigableMap;
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
    39
import java.util.NavigableSet;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * A {@link ConcurrentMap} supporting {@link NavigableMap} operations,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * and recursively so for its navigable sub-maps.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * <p>This interface is a member of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * Java Collections Framework</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * @author Doug Lea
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * @param <K> the type of keys maintained by this map
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * @param <V> the type of mapped values
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
public interface ConcurrentNavigableMap<K,V>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    extends ConcurrentMap<K,V>, NavigableMap<K,V>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     * @throws ClassCastException       {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     * @throws NullPointerException     {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     * @throws IllegalArgumentException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    ConcurrentNavigableMap<K,V> subMap(K fromKey, boolean fromInclusive,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
                                       K toKey,   boolean toInclusive);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * @throws ClassCastException       {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * @throws NullPointerException     {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * @throws IllegalArgumentException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    ConcurrentNavigableMap<K,V> headMap(K toKey, boolean inclusive);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * @throws ClassCastException       {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * @throws NullPointerException     {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     * @throws IllegalArgumentException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    ConcurrentNavigableMap<K,V> tailMap(K fromKey, boolean inclusive);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * @throws ClassCastException       {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * @throws NullPointerException     {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * @throws IllegalArgumentException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * @throws ClassCastException       {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * @throws NullPointerException     {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * @throws IllegalArgumentException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    ConcurrentNavigableMap<K,V> headMap(K toKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * @throws ClassCastException       {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * @throws NullPointerException     {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * @throws IllegalArgumentException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    ConcurrentNavigableMap<K,V> tailMap(K fromKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * Returns a reverse order view of the mappings contained in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * The descending map is backed by this map, so changes to the map are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * reflected in the descending map, and vice-versa.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * <p>The returned map has an ordering equivalent to
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
   106
     * {@link java.util.Collections#reverseOrder(Comparator) Collections.reverseOrder}{@code (comparator())}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * The expression {@code m.descendingMap().descendingMap()} returns a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * view of {@code m} essentially equivalent to {@code m}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * @return a reverse order view of this map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    ConcurrentNavigableMap<K,V> descendingMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * Returns a {@link NavigableSet} view of the keys contained in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * The set's iterator returns the keys in ascending order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * The set is backed by the map, so changes to the map are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * reflected in the set, and vice-versa.  The set supports element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * removal, which removes the corresponding mapping from the map,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * via the {@code Iterator.remove}, {@code Set.remove},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * {@code removeAll}, {@code retainAll}, and {@code clear}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * operations.  It does not support the {@code add} or {@code addAll}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * operations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     *
19428
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18802
diff changeset
   125
     * <p>The view's iterators and spliterators are
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18802
diff changeset
   126
     * <a href="package-summary.html#Weakly"><i>weakly consistent</i></a>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * @return a navigable set view of the keys in this map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     */
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
   130
    NavigableSet<K> navigableKeySet();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * Returns a {@link NavigableSet} view of the keys contained in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * The set's iterator returns the keys in ascending order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * The set is backed by the map, so changes to the map are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * reflected in the set, and vice-versa.  The set supports element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * removal, which removes the corresponding mapping from the map,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * via the {@code Iterator.remove}, {@code Set.remove},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * {@code removeAll}, {@code retainAll}, and {@code clear}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * operations.  It does not support the {@code add} or {@code addAll}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * operations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     *
19428
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18802
diff changeset
   143
     * <p>The view's iterators and spliterators are
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18802
diff changeset
   144
     * <a href="package-summary.html#Weakly"><i>weakly consistent</i></a>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * <p>This method is equivalent to method {@code navigableKeySet}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * @return a navigable set view of the keys in this map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    NavigableSet<K> keySet();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * Returns a reverse order {@link NavigableSet} view of the keys contained in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * The set's iterator returns the keys in descending order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * The set is backed by the map, so changes to the map are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * reflected in the set, and vice-versa.  The set supports element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * removal, which removes the corresponding mapping from the map,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * via the {@code Iterator.remove}, {@code Set.remove},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * {@code removeAll}, {@code retainAll}, and {@code clear}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * operations.  It does not support the {@code add} or {@code addAll}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * operations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     *
19428
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18802
diff changeset
   163
     * <p>The view's iterators and spliterators are
83f87aff7b07 8022318: Document Spliterator characteristics and binding policy of java util concurrent collection impls
psandoz
parents: 18802
diff changeset
   164
     * <a href="package-summary.html#Weakly"><i>weakly consistent</i></a>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * @return a reverse order navigable set view of the keys in this map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     */
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
   168
    NavigableSet<K> descendingKeySet();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
}