Uses of Class
org.apache.empire.db.DBJoinType

Packages that use DBJoinType
org.apache.empire.db This package contains the core Empire-DB implementation classes. 
org.apache.empire.db.expr.join This package contains SQL-generator classes for join expressions used in the from clause. 
 

Uses of DBJoinType in org.apache.empire.db
 

Methods in org.apache.empire.db that return DBJoinType
static DBJoinType DBJoinType.reversed(DBJoinType type)
           
static DBJoinType DBJoinType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DBJoinType[] DBJoinType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.apache.empire.db with parameters of type DBJoinType
 DBJoinExpr DBCommand.join(DBColumnExpr left, DBColumn right, DBJoinType joinType)
          Adds a join based on two columns to the list of join expressions.
 DBJoinExpr DBCommand.join(DBRowSet rowset, DBCompareExpr cmp, DBJoinType joinType)
          Adds a join based on a compare expression to the command.
static DBJoinType DBJoinType.reversed(DBJoinType type)
           
 

Uses of DBJoinType in org.apache.empire.db.expr.join
 

Fields in org.apache.empire.db.expr.join declared as DBJoinType
protected  DBJoinType DBJoinExpr.type
           
 

Methods in org.apache.empire.db.expr.join that return DBJoinType
 DBJoinType DBJoinExpr.getType()
          returns the join type for this join
 

Constructors in org.apache.empire.db.expr.join with parameters of type DBJoinType
DBJoinExpr(DBColumnExpr left, DBColumnExpr right, DBJoinType type)
          Constructs a new DBJoinExpr object initialize this object with the left and right column and the data type of the join expression.
DBJoinExprEx(DBRowSet rset, DBCompareExpr cmp, DBJoinType joinType)
          Constructs a new DBJoinExprEx
 



Copyright © 2008-2012 Apache Software Foundation. All Rights Reserved.