public final class MostlySingleton<T> extends Object implements Set<T>
| Constructor and Description | 
|---|
| MostlySingleton() | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | add(T e) | 
| boolean | addAll(Collection<? extends T> c) | 
| void | clear() | 
| boolean | contains(Object o) | 
| boolean | containsAll(Collection<?> c) | 
| boolean | isEmpty() | 
| Iterator<T> | iterator() | 
| boolean | remove(Object o) | 
| boolean | removeAll(Collection<?> c) | 
| boolean | retainAll(Collection<?> c) | 
| int | size() | 
| Object[] | toArray() | 
| <S> S[] | toArray(S[] a) | 
public int size()
public boolean isEmpty()
public boolean contains(Object o)
public boolean add(T e)
public Object[] toArray()
public <S> S[] toArray(S[] a)
public boolean remove(Object o)
public boolean containsAll(Collection<?> c)
containsAll in interface Collection<T>containsAll in interface Set<T>public boolean addAll(Collection<? extends T> c)
public boolean retainAll(Collection<?> c)
public boolean removeAll(Collection<?> c)