Lines Matching refs:key

41     <p>Keys in the map are unique, and each key maps to exactly one value.</p>
66 /** clears the map, removing all key-value pairs from it.
74 /** determines whether a mapping for he given key exists in the map
77 is the key whose presence in the map is to be tested.
79 <TRUE/> if and only if the map contains a mapping for the given key.
82 if the given key is not of a type which is accepted by the map
84 if the given key is not supported to be put into the map. It's up to the service
113 /** gets the value to which a given key maps.
116 they key whose associated value is to be returned.
118 the value which is associated with the given key.
121 if the given key is not of a type which is accepted by the map
123 if the given key is not supported to be put into the map. It's up to the service
129 if there is no value associated with the given key
136 /** associates a given key with a given value
138 … <p>If the map already contains a mapping for the given key, then the old value is replaced by the
142 is the key which the given value should be associated with
144 is the value which should be associated with the given key
146 the value which was previously associated with the given key, or <VOID/>
150 if the given key is not of a type which is accepted by the map
152 … if the given key, or the given value, is not supported to be put into the map. It's up to
166 /** removes a key-value mapping, given by key, from the map.
169 is the key whose mapping should be removed from the map
171 the value which was associated with the given key before the removal
174 if the given key is not of a type which is accepted by the map
176 if the given key is not supported to be put into the map. It's up to the service
184 if there is no value associated with the given key