com.ibm.websphere.query.base
Interface IPredicate

All Superinterfaces:
IStringBuilder, java.io.Serializable
All Known Implementing Classes:
Predicate

public interface IPredicate
extends IStringBuilder

The IPredicate interface is an object that represents a predicate in a query.

It extends the IStringBuilder interface.

Instances of classes that implement this interface are used to represent predicates that contain an operator and predicate bases (conditions or sub-predicates).


Method Summary
 IOperator getOperator()
          Returns the operator of the predicate.
 PredicateBase[] getPredicateBases()
          Returns the sub predicates of the predicate.
 
Methods inherited from interface com.ibm.websphere.query.base.IStringBuilder
buildString, buildString
 

Method Detail

getOperator

IOperator getOperator()
Returns the operator of the predicate.


getPredicateBases

PredicateBase[] getPredicateBases()
Returns the sub predicates of the predicate.