Uses of Class
org.apache.torque.criteria.JoinType
-
Packages that use JoinType Package Description org.apache.torque.criteria This package contains Torque's Criteria classes. -
-
Uses of JoinType in org.apache.torque.criteria
Fields in org.apache.torque.criteria declared as JoinType Modifier and Type Field Description static JoinType
Criteria. INNER_JOIN
"INNER JOIN" SQL statementstatic JoinType
Criteria. LEFT_JOIN
"LEFT JOIN" SQL statementstatic JoinType
Criteria. RIGHT_JOIN
"RIGHT JOIN" SQL statementMethods in org.apache.torque.criteria that return JoinType Modifier and Type Method Description JoinType
FromElement. getJoinType()
Returns the join type.JoinType
Join. getJoinType()
static JoinType
JoinType. valueOf(String name)
Returns the enum constant of this type with the specified name.static JoinType[]
JoinType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.torque.criteria with parameters of type JoinType Modifier and Type Method Description Criteria
Criteria. addJoin(String leftTable, String rightTable, Criterion joinCondition, JoinType joinType)
Adds a join to the criteria.Criteria
Criteria. addJoin(Column left, Column right, JoinType joinType)
Adds a join to the criteria, E.g. to create the conditionCriteria
Criteria. addJoin(Column left, Column right, SqlEnum comparison, JoinType joinType)
Adds a join to the criteria, E.g. to create the conditionCriteria
Criteria. addJoin(PreparedStatementPart leftTable, PreparedStatementPart rightTable, Criterion joinCondition, JoinType joinType)
Adds a join to the criteria, E.g. to create the conditionConstructors in org.apache.torque.criteria with parameters of type JoinType Constructor Description FromElement(String fromExpression, JoinType joinType, String joinCondition)
Constructor.FromElement(String fromExpression, JoinType joinType, String joinCondition, List<Object> preparedStatementReplacements)
Constructor.FromElement(String fromExpression, JoinType joinType, PreparedStatementPart joinCondition)
Constructor.Join(Column leftColumn, Column rightColumn, SqlEnum comparison, JoinType joinType)
Constructor with the comparison operator.Join(PreparedStatementPart leftTable, PreparedStatementPart rightTable, Criterion joinCondition, JoinType joinType)
Constructor.
-