HashSets<T> |
HashSets.add(T add) |
HashSets<T> |
HashSets.addAll(Set<T> add) |
HashSets<T> |
HashSets.addAll(T... add) |
HashSets<T> |
HashSets.addConditional(boolean b,
T add) |
static <T> HashSets<T> |
HashSets.empty() |
static <T> HashSets<T> |
HashSets.hashed() |
static <T> HashSets<T> |
HashSets.hashed(Collection<T> set) |
HashSets<T> |
HashSets.intersect(Set<T> retain) |
static <T> HashSets<T> |
HashSets.linked() |
static <T> HashSets<T> |
HashSets.linked(Collection<T> set) |
HashSets<T> |
HashSets.minus(Set<T> remove) |
HashSets<T> |
HashSets.remove(T remove) |
HashSets<T> |
HashSets.removeAll(Set<T> remove) |
HashSets<T> |
HashSets.removeAll(T... remove) |
HashSets<T> |
HashSets.removeConditional(boolean b,
T remove) |
HashSets<T> |
HashSets.retain(T retain) |
HashSets<T> |
HashSets.retainAll(Set<T> retain) |
HashSets<T> |
HashSets.retainAll(T... retain) |
HashSets<T> |
HashSets.retainConditional(boolean b,
T retain) |
HashSets<T> |
HashSets.union(Set<T> add) |