Module java.base

Class ConcurrentHashMap.KeySetView<K,V>

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean add​(K e)
      Adds the specified key to this set view by mapping the key to the default mapped value in the backing map, if defined.
      boolean addAll​(Collection<? extends K> c)
      Adds all of the elements in the specified collection to this set, as if by calling add(K) on each one.
      void clear()
      Removes all of the elements from this view, by removing all the mappings from the map backing this view.
      boolean contains​(Object o)
      Returns true if this collection contains the specified element.
      boolean containsAll​(Collection<?> c)
      Returns true if this collection contains all of the elements in the specified collection.
      ConcurrentHashMap<K,V> getMap()
      Returns the map backing this view.
      V getMappedValue()
      Returns the default mapped value for additions, or null if additions are not supported.
      boolean isEmpty()
      Returns true if this collection contains no elements.
      Iterator<K> iterator()
      Returns an iterator over the elements in this collection.
      boolean remove​(Object o)
      Removes the key from this map view, by removing the key (and its corresponding value) from the backing map.
      boolean removeAll​(Collection<?> c)
      Removes all of this collection's elements that are also contained in the specified collection (optional operation).
      boolean retainAll​(Collection<?> c)
      Retains only the elements in this collection that are contained in the specified collection (optional operation).
      int size()
      Returns the number of elements in this collection.
      Object[] toArray()
      Returns an array containing all of the elements in this collection.
      <T> T[] toArray​(T[] a)
      Returns an array containing all of the elements in this collection; the runtime type of the returned array is that of the specified array.
      String toString()
      Returns a string representation of this collection.
    • Method Detail

      • getMappedValue

        public V getMappedValue()
        Returns the default mapped value for additions, or null if additions are not supported.
        Returns:
        the default mapped value for additions, or null if not supported
      • contains

        public boolean contains​(Object o)
        Returns true if this collection contains the specified element. More formally, returns true if and only if this collection contains at least one element e such that Objects.equals(o, e).
        Specified by:
        contains in interface Collection<K>
        Specified by:
        contains in interface Set<K>
        Parameters:
        o - element whose presence in this collection is to be tested
        Returns:
        true if this collection contains the specified element
        Throws:
        NullPointerException - if the specified key is null
      • remove

        public boolean remove​(Object o)
        Removes the key from this map view, by removing the key (and its corresponding value) from the backing map. This method does nothing if the key is not in the map.
        Specified by:
        remove in interface Collection<K>
        Specified by:
        remove in interface Set<K>
        Parameters:
        o - the key to be removed from the backing map
        Returns:
        true if the backing map contained the specified key
        Throws:
        NullPointerException - if the specified key is null
      • add

        public boolean add​(K e)
        Adds the specified key to this set view by mapping the key to the default mapped value in the backing map, if defined.
        Specified by:
        add in interface Collection<K>
        Specified by:
        add in interface Set<K>
        Parameters:
        e - key to be added
        Returns:
        true if this set changed as a result of the call
        Throws:
        NullPointerException - if the specified key is null
        UnsupportedOperationException - if no default mapped value for additions was provided
      • addAll

        public boolean addAll​(Collection<? extends K> c)
        Adds all of the elements in the specified collection to this set, as if by calling add(K) on each one.
        Specified by:
        addAll in interface Collection<K>
        Specified by:
        addAll in interface Set<K>
        Parameters:
        c - the elements to be inserted into this set
        Returns:
        true if this set changed as a result of the call
        Throws:
        NullPointerException - if the collection or any of its elements are null
        UnsupportedOperationException - if no default mapped value for additions was provided
        See Also:
        Set.add(Object)
      • getMap

        public ConcurrentHashMap<K,V> getMap()
        Returns the map backing this view.
        Returns:
        the map backing this view
      • clear

        public final void clear()
        Removes all of the elements from this view, by removing all the mappings from the map backing this view.
        Specified by:
        clear in interface Collection<K>
      • size

        public final int size()
        Description copied from interface: Collection
        Returns the number of elements in this collection. If this collection contains more than Integer.MAX_VALUE elements, returns Integer.MAX_VALUE.
        Specified by:
        size in interface Collection<K>
        Returns:
        the number of elements in this collection
      • isEmpty

        public final boolean isEmpty()
        Description copied from interface: Collection
        Returns true if this collection contains no elements.
        Specified by:
        isEmpty in interface Collection<K>
        Returns:
        true if this collection contains no elements
      • toArray

        public final Object[] toArray()
        Description copied from interface: Collection
        Returns an array containing all of the elements in this collection. If this collection makes any guarantees as to what order its elements are returned by its iterator, this method must return the elements in the same order. The returned array's runtime component type is Object.

        The returned array will be "safe" in that no references to it are maintained by this collection. (In other words, this method must allocate a new array even if this collection is backed by an array). The caller is thus free to modify the returned array.

        This method acts as bridge between array-based and collection-based APIs.

        Specified by:
        toArray in interface Collection<K>
        Returns:
        an array, whose runtime component type is Object, containing all of the elements in this collection
      • toArray

        public final <T> T[] toArray​(T[] a)
        Description copied from interface: Collection
        Returns an array containing all of the elements in this collection; the runtime type of the returned array is that of the specified array. If the collection fits in the specified array, it is returned therein. Otherwise, a new array is allocated with the runtime type of the specified array and the size of this collection.

        If this collection fits in the specified array with room to spare (i.e., the array has more elements than this collection), the element in the array immediately following the end of the collection is set to null. (This is useful in determining the length of this collection only if the caller knows that this collection does not contain any null elements.)

        If this collection makes any guarantees as to what order its elements are returned by its iterator, this method must return the elements in the same order.

        Like the Collection.toArray() method, this method acts as bridge between array-based and collection-based APIs. Further, this method allows precise control over the runtime type of the output array, and may, under certain circumstances, be used to save allocation costs.

        Suppose x is a collection known to contain only strings. The following code can be used to dump the collection into a newly allocated array of String:

             String[] y = x.toArray(new String[0]);
        Note that toArray(new Object[0]) is identical in function to toArray().
        Specified by:
        toArray in interface Collection<K>
        Type Parameters:
        T - the component type of the array to contain the collection
        Parameters:
        a - the array into which the elements of this collection are to be stored, if it is big enough; otherwise, a new array of the same runtime type is allocated for this purpose.
        Returns:
        an array containing all of the elements in this collection
      • toString

        public final String toString()
        Returns a string representation of this collection. The string representation consists of the string representations of the collection's elements in the order they are returned by its iterator, enclosed in square brackets ("[]"). Adjacent elements are separated by the characters ", " (comma and space). Elements are converted to strings as by String.valueOf(Object).
        Overrides:
        toString in class Object
        Returns:
        a string representation of this collection
      • containsAll

        public final boolean containsAll​(Collection<?> c)
        Description copied from interface: Collection
        Returns true if this collection contains all of the elements in the specified collection.
        Specified by:
        containsAll in interface Collection<K>
        Parameters:
        c - collection to be checked for containment in this collection
        Returns:
        true if this collection contains all of the elements in the specified collection
        See Also:
        Collection.contains(Object)
      • removeAll

        public boolean removeAll​(Collection<?> c)
        Description copied from interface: Collection
        Removes all of this collection's elements that are also contained in the specified collection (optional operation). After this call returns, this collection will contain no elements in common with the specified collection.
        Specified by:
        removeAll in interface Collection<K>
        Parameters:
        c - collection containing elements to be removed from this collection
        Returns:
        true if this collection changed as a result of the call
        See Also:
        Collection.remove(Object), Collection.contains(Object)
      • retainAll

        public final boolean retainAll​(Collection<?> c)
        Description copied from interface: Collection
        Retains only the elements in this collection that are contained in the specified collection (optional operation). In other words, removes from this collection all of its elements that are not contained in the specified collection.
        Specified by:
        retainAll in interface Collection<K>
        Parameters:
        c - collection containing elements to be retained in this collection
        Returns:
        true if this collection changed as a result of the call
        See Also:
        Collection.remove(Object), Collection.contains(Object)