Uses of Enum
org.apache.empire.db.DBJoinType
Packages that use DBJoinType
Package
Description
This package contains the core Empire-DB implementation classes.
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 DBJoinTypeModifier and TypeMethodDescriptionstatic DBJoinTypeDBJoinType.reversed(DBJoinType type) static DBJoinTypeReturns 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 DBJoinTypeModifier and TypeMethodDescriptionfinal DBCommandDBCommand.join(DBColumn[] left, DBColumn[] right, DBJoinType joinType, DBCompareExpr... addlConstraints) Multi-Column version of column based join expressionfinal DBCommandDBCommand.join(DBColumnExpr left, DBColumn right, DBJoinType joinType, DBCompareExpr... addlConstraints) Adds a join based on two columns to the list of join expressions.final DBCommandDBCommand.join(DBRowSet rowset, DBCompareExpr cmp, DBJoinType joinType) Adds a join based on a compare expression to the command.final DBCommandDBCommand.join(DBJoinExpr join, DBJoinType joinType) Adds a join to the list of join expressions.static DBJoinTypeDBJoinType.reversed(DBJoinType type) -
Uses of DBJoinType in org.apache.empire.db.expr.join
Fields in org.apache.empire.db.expr.join declared as DBJoinTypeMethods in org.apache.empire.db.expr.join that return DBJoinTypeMethods in org.apache.empire.db.expr.join with parameters of type DBJoinTypeModifier and TypeMethodDescriptionvoidDBCrossJoinExpr.setType(DBJoinType type) alters the join type for this joinvoidDBJoinExpr.setType(DBJoinType type) alters the join type for this joinConstructors in org.apache.empire.db.expr.join with parameters of type DBJoinTypeModifierConstructorDescriptionDBColumnJoinExpr(DBColumnExpr left, DBColumnExpr right, DBJoinType type) DBColumnJoinExpr(DBColumnExpr left, DBColumnExpr right, DBJoinType type, DBCompareExpr addlConstraint) Constructs a join expression based on two columns or column expressionsDBCompareJoinExpr(DBRowSet rset, DBCompareExpr cmp, DBJoinType joinType) Constructs a new DBJoinExprExprotectedDBJoinExpr(DBJoinType type) Constructs a new DBJoinExpr object initialize this object with the left and right column and the data type of the join expression.