jdk/src/java.base/share/classes/java/util/Dictionary.java
author chegar
Tue, 07 Apr 2015 10:33:08 +0100
changeset 29816 43ad6bf3975b
parent 25859 3317bb8137f4
child 32108 aa5490a167ee
permissions -rw-r--r--
8076442: Cannot fully read BitSet.stream() if bit Integer.MAX_VALUE is set Reviewed-by: alanb, henryjen
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 1995, 2004, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * 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
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.util;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * The <code>Dictionary</code> class is the abstract parent of any
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * class, such as <code>Hashtable</code>, which maps keys to values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * Every key and every value is an object. In any one <tt>Dictionary</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * object, every key is associated with at most one value. Given a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * <tt>Dictionary</tt> and a key, the associated element can be looked up.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * Any non-<code>null</code> object can be used as a key and as a value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * As a rule, the <code>equals</code> method should be used by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * implementations of this class to decide if two keys are the same.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * <strong>NOTE: This class is obsolete.  New implementations should
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * implement the Map interface, rather than extending this class.</strong>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * @author  unascribed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * @see     java.util.Map
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * @see     java.lang.Object#equals(java.lang.Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * @see     java.lang.Object#hashCode()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * @see     java.util.Hashtable
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 5506
diff changeset
    47
 * @since   1.0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
public abstract
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
class Dictionary<K,V> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     * Sole constructor.  (For invocation by subclass constructors, typically
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
     * implicit.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    public Dictionary() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     * Returns the number of entries (distinct keys) in this dictionary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * @return  the number of keys in this dictionary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    abstract public int size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * Tests if this dictionary maps no keys to value. The general contract
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * for the <tt>isEmpty</tt> method is that the result is true if and only
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * if this dictionary contains no entries.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * @return  <code>true</code> if this dictionary maps no keys to values;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     *          <code>false</code> otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    abstract public boolean isEmpty();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * Returns an enumeration of the keys in this dictionary. The general
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     * contract for the keys method is that an <tt>Enumeration</tt> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * is returned that will generate all the keys for which this dictionary
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * contains entries.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * @return  an enumeration of the keys in this dictionary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * @see     java.util.Dictionary#elements()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * @see     java.util.Enumeration
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    abstract public Enumeration<K> keys();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * Returns an enumeration of the values in this dictionary. The general
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * contract for the <tt>elements</tt> method is that an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * <tt>Enumeration</tt> is returned that will generate all the elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * contained in entries in this dictionary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     * @return  an enumeration of the values in this dictionary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * @see     java.util.Dictionary#keys()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * @see     java.util.Enumeration
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    abstract public Enumeration<V> elements();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * Returns the value to which the key is mapped in this dictionary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * The general contract for the <tt>isEmpty</tt> method is that if this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * dictionary contains an entry for the specified key, the associated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * value is returned; otherwise, <tt>null</tt> is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * @return  the value to which the key is mapped in this dictionary;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * @param   key   a key in this dictionary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     *          <code>null</code> if the key is not mapped to any value in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     *          this dictionary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * @exception NullPointerException if the <tt>key</tt> is <tt>null</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * @see     java.util.Dictionary#put(java.lang.Object, java.lang.Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    abstract public V get(Object key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * Maps the specified <code>key</code> to the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * <code>value</code> in this dictionary. Neither the key nor the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * value can be <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * If this dictionary already contains an entry for the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * <tt>key</tt>, the value already in this dictionary for that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * <tt>key</tt> is returned, after modifying the entry to contain the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     *  new element. <p>If this dictionary does not already have an entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     *  for the specified <tt>key</tt>, an entry is created for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     *  specified <tt>key</tt> and <tt>value</tt>, and <tt>null</tt> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     *  returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * The <code>value</code> can be retrieved by calling the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * <code>get</code> method with a <code>key</code> that is equal to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * the original <code>key</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * @param      key     the hashtable key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * @param      value   the value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * @return     the previous value to which the <code>key</code> was mapped
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     *             in this dictionary, or <code>null</code> if the key did not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     *             have a previous mapping.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * @exception  NullPointerException  if the <code>key</code> or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     *               <code>value</code> is <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * @see        java.lang.Object#equals(java.lang.Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * @see        java.util.Dictionary#get(java.lang.Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    abstract public V put(K key, V value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * Removes the <code>key</code> (and its corresponding
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * <code>value</code>) from this dictionary. This method does nothing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * if the <code>key</code> is not in this dictionary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * @param   key   the key that needs to be removed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * @return  the value to which the <code>key</code> had been mapped in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     *          dictionary, or <code>null</code> if the key did not have a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     *          mapping.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * @exception NullPointerException if <tt>key</tt> is <tt>null</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    abstract public V remove(Object key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
}