+

Search Tips   |   Advanced Search

 PREV CLASS   NEXT CLASS
Tree 
SUMMARY: NESTED | FIELD | CONSTR | METHOD DETAIL: FIELD | CONSTR | METHOD

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()
          Return the left operand of the condition.
 IOperator getOperator()
          Return the operator of the condition.
 IRightOperand[] getRightOperands()
          Return 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.

 PREV CLASS   NEXT CLASS
Tree 
SUMMARY: NESTED | FIELD | CONSTR | METHOD DETAIL: FIELD | CONSTR | METHOD