Uses of Class
org.apache.torque.criteria.JoinType

Packages that use JoinType
org.apache.torque.criteria This package contains Torque's Criteria classes. 
org.apache.torque.util Misc. 
 

Uses of JoinType in org.apache.torque.criteria
 

Fields in org.apache.torque.criteria declared as JoinType
static JoinType Criteria.INNER_JOIN
          "INNER JOIN" SQL statement
static JoinType Criteria.LEFT_JOIN
          "LEFT JOIN" SQL statement
static JoinType Criteria.RIGHT_JOIN
          "RIGHT JOIN" SQL statement
 

Methods in org.apache.torque.criteria that return JoinType
 JoinType Join.getJoinType()
           
 JoinType FromElement.getJoinType()
          Returns the join type.
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
 Criteria Criteria.addJoin(Column left, Column right, JoinType joinType)
          Adds a join to the criteria, E.g.
 Criteria Criteria.addJoin(Column left, Column right, SqlEnum comparison, JoinType joinType)
          Adds a join to the criteria, E.g.
 Criteria Criteria.addJoin(PreparedStatementPart leftTable, PreparedStatementPart rightTable, Criterion joinCondition, JoinType joinType)
          Adds a join to the criteria, E.g.
 Criteria Criteria.addJoin(String leftTable, String rightTable, Criterion joinCondition, JoinType joinType)
          Adds a join to the criteria, E.g.
 

Constructors in org.apache.torque.criteria with parameters of type JoinType
FromElement(String fromExpression, JoinType joinType, PreparedStatementPart joinCondition)
          Constructor.
FromElement(String fromExpression, JoinType joinType, String joinCondition)
          Constructor.
FromElement(String fromExpression, JoinType joinType, String joinCondition, List<Object> preparedStatementReplacements)
          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.
 

Uses of JoinType in org.apache.torque.util
 

Fields in org.apache.torque.util declared as JoinType
static JoinType Criteria.INNER_JOIN
          Deprecated. "INNER JOIN" SQL statement
static JoinType Criteria.LEFT_JOIN
          Deprecated. "LEFT JOIN" SQL statement
static JoinType Criteria.RIGHT_JOIN
          Deprecated. "RIGHT JOIN" SQL statement
 

Methods in org.apache.torque.util with parameters of type JoinType
 Criteria Criteria.addJoin(Column left, Column right, JoinType operator)
          Deprecated. This is the way that you should add a join of two tables.
 Criteria Criteria.addJoin(String left, String right, JoinType operator)
          Deprecated. This is the way that you should add a join of two tables.
 



Copyright © 2000-2013 The Apache Software Foundation. All Rights Reserved.