Uses of Interface
ix.util.Predicate1

Packages that use Predicate1
ix.ip2 I-X Process Panels 
ix.iplan The I-X planner. 
ix.test Simple applications for testing purposes. 
ix.util General-purpose utilities. 
ix.util.reflect Reflection utilities. 
ix.util.xml XML utilities. 
 

Uses of Predicate1 in ix.ip2
 

Methods in ix.ip2 with parameters of type Predicate1
 ItemHandler PanelController.findHandler(Predicate1 p)
           
 

Uses of Predicate1 in ix.iplan
 

Fields in ix.iplan declared as Predicate1
protected  Predicate1 FilteredPlanner.filter
           
(package private)  Predicate1 IPlanOptionManager.PlanGen.planFilter
           
 

Methods in ix.iplan that return Predicate1
(package private)  Predicate1 IPlanOptionManager.makePlanFilter()
           
 

Constructors in ix.iplan with parameters of type Predicate1
FilteredPlanner(Planner planner, Predicate1 filter)
           
 

Uses of Predicate1 in ix.test
 

Classes in ix.test that implement Predicate1
 class DigestSet.IsNewPredciate
           
 

Uses of Predicate1 in ix.util
 

Fields in ix.util declared as Predicate1
static Predicate1 Fn.alwaysFalse
          A predicate that returns false for any object.
static Predicate1 Fn.alwaysTrue
          A predicate that returns true for any object.
 

Methods in ix.util that return Predicate1
static Predicate1 Fn.isInstanceOf(java.lang.Class c)
          Returns a predicate that test whether an object is an instance of the specified class.
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.Collection ObjectWalker.collectIf(java.lang.Object source, java.util.Collection result, Predicate1 p)
          Uses the specified result collection to collect subobjects that satisfy a predicate.
static java.util.Collection ObjectWalker.collectIf(java.lang.Object source, Predicate1 p)
          Uses a HashSet to collect subobjects that satisfy a predicate.
static boolean Collect.every(java.util.Collection c, Predicate1 p)
          Tests whether a predicate is true of every element of a collection.
static java.util.Collection Collect.filter(java.util.Collection result, java.util.Collection c, Predicate1 p)
          Returns the result collection after adding the elements of another collection for which the predicate returned true;
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.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.lang.Object Collect.findIf(java.util.Collection col, Predicate1 p)
          Returns the first element of the collection such that the predicate is true.
static java.lang.Object ObjectWalker.findIf(java.lang.Object source, Predicate1 p)
          Returns the first subobject that satisfies a predicate
static Predicate1 Fn.negate(Predicate1 p)
          Returns a predicate that returns false when the given predicate returns true, and true when it returns false.
static boolean Collect.some(java.util.Collection c, Predicate1 p)
          Tests whether a prediate is true of at least one element of a collection.
 

Uses of Predicate1 in ix.util.reflect
 

Methods in ix.util.reflect with parameters of type Predicate1
(package private)  void FieldMap.removeIf(Predicate1<FieldDescr> p)
           
 

Uses of Predicate1 in ix.util.xml
 

Fields in ix.util.xml declared as Predicate1
protected  Predicate1 XMLSyntax.attributeFieldP