org.eclipse.jetty.util
类 ConcurrentHashSet<E>

java.lang.Object
  继承者 java.util.AbstractCollection<E>
      继承者 java.util.AbstractSet<E>
          继承者 org.eclipse.jetty.util.ConcurrentHashSet<E>
所有已实现的接口:
Iterable<E>, Collection<E>, Set<E>

public class ConcurrentHashSet<E>
extends AbstractSet<E>
implements Set<E>


构造方法摘要
ConcurrentHashSet()
           
 
方法摘要
 boolean add(E e)
           
 void clear()
           
 boolean contains(Object o)
           
 boolean containsAll(Collection<?> c)
           
 boolean equals(Object o)
           
 int hashCode()
           
 boolean isEmpty()
           
 Iterator<E> iterator()
           
 boolean remove(Object o)
           
 boolean removeAll(Collection<?> c)
           
 boolean retainAll(Collection<?> c)
           
 int size()
           
 Object[] toArray()
           
<T> T[]
toArray(T[] a)
           
 String toString()
           
 
从类 java.util.AbstractCollection 继承的方法
addAll
 
从类 java.lang.Object 继承的方法
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
从接口 java.util.Set 继承的方法
addAll
 

构造方法详细信息

ConcurrentHashSet

public ConcurrentHashSet()
方法详细信息

add

public boolean add(E e)
指定者:
接口 Collection<E> 中的 add
指定者:
接口 Set<E> 中的 add
覆盖:
AbstractCollection<E> 中的 add

clear

public void clear()
指定者:
接口 Collection<E> 中的 clear
指定者:
接口 Set<E> 中的 clear
覆盖:
AbstractCollection<E> 中的 clear

contains

public boolean contains(Object o)
指定者:
接口 Collection<E> 中的 contains
指定者:
接口 Set<E> 中的 contains
覆盖:
AbstractCollection<E> 中的 contains

containsAll

public boolean containsAll(Collection<?> c)
指定者:
接口 Collection<E> 中的 containsAll
指定者:
接口 Set<E> 中的 containsAll
覆盖:
AbstractCollection<E> 中的 containsAll

equals

public boolean equals(Object o)
指定者:
接口 Collection<E> 中的 equals
指定者:
接口 Set<E> 中的 equals
覆盖:
AbstractSet<E> 中的 equals

hashCode

public int hashCode()
指定者:
接口 Collection<E> 中的 hashCode
指定者:
接口 Set<E> 中的 hashCode
覆盖:
AbstractSet<E> 中的 hashCode

isEmpty

public boolean isEmpty()
指定者:
接口 Collection<E> 中的 isEmpty
指定者:
接口 Set<E> 中的 isEmpty
覆盖:
AbstractCollection<E> 中的 isEmpty

iterator

public Iterator<E> iterator()
指定者:
接口 Iterable<E> 中的 iterator
指定者:
接口 Collection<E> 中的 iterator
指定者:
接口 Set<E> 中的 iterator
指定者:
AbstractCollection<E> 中的 iterator

remove

public boolean remove(Object o)
指定者:
接口 Collection<E> 中的 remove
指定者:
接口 Set<E> 中的 remove
覆盖:
AbstractCollection<E> 中的 remove

removeAll

public boolean removeAll(Collection<?> c)
指定者:
接口 Collection<E> 中的 removeAll
指定者:
接口 Set<E> 中的 removeAll
覆盖:
AbstractSet<E> 中的 removeAll

retainAll

public boolean retainAll(Collection<?> c)
指定者:
接口 Collection<E> 中的 retainAll
指定者:
接口 Set<E> 中的 retainAll
覆盖:
AbstractCollection<E> 中的 retainAll

size

public int size()
指定者:
接口 Collection<E> 中的 size
指定者:
接口 Set<E> 中的 size
指定者:
AbstractCollection<E> 中的 size

toArray

public Object[] toArray()
指定者:
接口 Collection<E> 中的 toArray
指定者:
接口 Set<E> 中的 toArray
覆盖:
AbstractCollection<E> 中的 toArray

toArray

public <T> T[] toArray(T[] a)
指定者:
接口 Collection<E> 中的 toArray
指定者:
接口 Set<E> 中的 toArray
覆盖:
AbstractCollection<E> 中的 toArray

toString

public String toString()
覆盖:
AbstractCollection<E> 中的 toString


Copyright © 2013. All Rights Reserved.