| Methods in org.jjoost.util.filters that return AcceptUnique |
static
|
AcceptUnique.get()
Returns a Filter which returns true if and only if it has never seen the value being tested before, using regular
object equality. |
static
|
AcceptUnique.get(Equality<? super V> eq)
Returns a Filter which returns true if and only if it has never seen the value being tested before, using the provided
equality. |
static
|
AcceptUnique.get(Set<V> set)
Returns a Filter which returns true if and only if it has never seen the value being tested before, using the provided
set to maintain all visited values, and hence the set's definition of equality. |