org.codehaus.jparsec.examples.sql.ast
Class JoinRelation

java.lang.Object
  extended by org.codehaus.jparsec.examples.common.ValueObject
      extended by org.codehaus.jparsec.examples.sql.ast.JoinRelation
All Implemented Interfaces:
Relation

public final class JoinRelation
extends ValueObject
implements Relation

Models a join.

Author:
Ben Yu

Field Summary
 Expression condition
           
 JoinType joinType
           
 Relation left
           
 Relation right
           
 
Constructor Summary
JoinRelation(Relation left, JoinType joinType, Relation right, Expression condition)
           
 
Method Summary
 
Methods inherited from class org.codehaus.jparsec.examples.common.ValueObject
equals, hashCode, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

left

public final Relation left

right

public final Relation right

joinType

public final JoinType joinType

condition

public final Expression condition
Constructor Detail

JoinRelation

public JoinRelation(Relation left,
                    JoinType joinType,
                    Relation right,
                    Expression condition)


Copyright © 2014. All rights reserved.