com.ibm.websphere.query.base
Interface ICondition

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

public interface ICondition
extends IStringBuilder

The ICondition interface is an object that represents a condition in a query.

It extends the IStringBuilder interface.

Instances of classes that implement this interface are used to represent conditions that contain a left operand, an operator, and right operands.


Method Summary
 ILeftOperand getLeftOperand()
          Returns the left operand of the condition.
 IOperator getOperator()
          Returns the operator of the condition.
 IRightOperand[] getRightOperands()
          Returns the right operands of the condition.
 
Methods inherited from interface com.ibm.websphere.query.base.IStringBuilder
buildString, buildString
 

Method Detail

getLeftOperand

ILeftOperand getLeftOperand()
Returns the left operand of the condition.


getOperator

IOperator getOperator()
Returns the operator of the condition.


getRightOperands

IRightOperand[] getRightOperands()
Returns the right operands of the condition.