org.xorm.query
Class SimpleCondition

java.lang.Object
  |
  +--org.xorm.query.Condition
        |
        +--org.xorm.query.SimpleCondition
All Implemented Interfaces:
Cloneable

public class SimpleCondition
extends Condition


Constructor Summary
SimpleCondition(Column column, Operator operator, Object value)
           
 
Method Summary
 Object clone()
           
 Column getColumn()
           
 Operator getOperator()
           
 Object getValue()
           
 String toString()
           
 
Methods inherited from class org.xorm.query.Condition
isInverted, setInverted
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SimpleCondition

public SimpleCondition(Column column,
                       Operator operator,
                       Object value)
Method Detail

getColumn

public Column getColumn()

getOperator

public Operator getOperator()

getValue

public Object getValue()

clone

public Object clone()
Overrides:
clone in class Condition

toString

public String toString()
Overrides:
toString in class Object


$Header: /cvsroot/xorm/xorm/docs/api/org/xorm/query/SimpleCondition.html,v 1.8 2004/05/30 08:55:08 wbiggs Exp $