com.neoworks.jukex.query
Class JukeXExpression.Relop

java.lang.Object
  |
  +--com.neoworks.jukex.query.JukeXExpression.Relop
All Implemented Interfaces:
Expression, java.io.Serializable
Enclosing class:
JukeXExpression

public static class JukeXExpression.Relop
extends java.lang.Object
implements Expression

Relational operator expression. E.g. x > y

See Also:
Serialized Form

Constructor Summary
JukeXExpression.Relop(JukeXExpression.Variable variable, java.lang.String operator, JukeXExpression.Literal literal)
          Public constructor
 
Method Summary
 void getSQL(java.lang.StringBuffer buffer)
          Get the generated SQL for this expression
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JukeXExpression.Relop

public JukeXExpression.Relop(JukeXExpression.Variable variable,
                             java.lang.String operator,
                             JukeXExpression.Literal literal)
Public constructor

Parameters:
variable - lvalue
operator - The relational operator
literal - rvalue
Method Detail

getSQL

public void getSQL(java.lang.StringBuffer buffer)
Get the generated SQL for this expression

Specified by:
getSQL in interface Expression
Parameters:
buffer - The StringBuffer to populate with the SQL.