Uses of Interface
ix.util.Predicate1

Packages that use Predicate1
ix.util General-purpose utilities. 
ix.util.xml XML utilities. 
 

Uses of Predicate1 in ix.util
 

Methods in ix.util that return Predicate1
static Predicate1 Fn.negate(Predicate1 p)
          Returns a predicate that returns false when the given predicate returns true, and true when it returns false.
 

Methods in ix.util with parameters of type Predicate1
static java.util.Enumeration Seq.filter(java.util.Enumeration e, Predicate1 p)
          Takes an Enumeration e and a Predicate1 p and returns a "wrapper" Enumeration w such that the elements of w are the corresponding elements of e, omitting the elements of e for which p.trueOf returns false.
static java.util.Collection Collect.filter(java.util.Collection c, Predicate1 p)
          Returns a new collection of the same class as the original and containing only the elements for which the predicate returned true;
static java.util.Collection Collect.filter(java.lang.Class resultClass, java.util.Collection c, Predicate1 p)
          Returns a new collection of the specified result class and and containing only the elements for which the predicate returned true;
static Predicate1 Fn.negate(Predicate1 p)
          Returns a predicate that returns false when the given predicate returns true, and true when it returns false.
 

Uses of Predicate1 in ix.util.xml
 

Fields in ix.util.xml declared as Predicate1
protected  Predicate1 Syntax.isFieldAttribute