juggernaut.cef
public class RandomBag<E> extends Object implements Collection<E>
Constructor Summary | |
---|---|
RandomBag() | |
RandomBag(Collection<? extends E> c) | |
RandomBag(int initCapacity) |
Method Summary | |
---|---|
boolean | add(E e) |
boolean | addAll(Collection<? extends E> c) |
void | clear() |
boolean | contains(Object o) |
boolean | containsAll(Collection<?> c) |
boolean | isEmpty() |
Iterator<E> | iterator() |
E | remove() |
boolean | remove(Object o) |
boolean | removeAll(Collection<?> c) |
boolean | retainAll(Collection<?> c) |
int | size() |
Object[] | toArray() |
<T> T[] | toArray(T[] a) |