All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class COM.objectspace.jgl.predicates.UnaryAnd

java.lang.Object
   |
   +----COM.objectspace.jgl.predicates.UnaryAnd

public final class UnaryAnd
extends Object
implements UnaryPredicate
UnaryAnd is a unary predicate that returns true if the result of executing all unary predicates on given operands is true.

See Also:
BinaryAnd

Constructor Index

 o UnaryAnd(UnaryPredicate, UnaryPredicate)
Construct myself with two unary predicate objects.
 o UnaryAnd(UnaryPredicate[])
Construct myself to use all given predicates for testing.

Method Index

 o execute(Object)
Perform my unary predicates on the operand and return true if all predicates return true.

Constructors

 o UnaryAnd
 public UnaryAnd(UnaryPredicate p1,
                 UnaryPredicate p2)
Construct myself with two unary predicate objects.

Parameters:
p1 - A unary predicate object, which should be a predicate.
p2 - A unary predicate object, which should be a predicate.
 o UnaryAnd
 public UnaryAnd(UnaryPredicate p[])
Construct myself to use all given predicates for testing.

Parameters:
p - An array or UnaryPredicates.

Methods

 o execute
 public boolean execute(Object object)
Perform my unary predicates on the operand and return true if all predicates return true.

Parameters:
object - The operand.

All Packages  Class Hierarchy  This Package  Previous  Next  Index