Uses of Class
org.jjoost.util.filters.AcceptUnique

Packages that use AcceptUnique
org.jjoost.util.filters   
 

Uses of AcceptUnique in org.jjoost.util.filters
 

Methods in org.jjoost.util.filters that return AcceptUnique
static
<V> AcceptUnique<V>
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
<V> AcceptUnique<V>
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
<V> AcceptUnique<V>
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.