Uses of Enum Class
org.apache.torque.criteria.JoinType
Packages that use JoinType
-
Uses of JoinType in org.apache.torque.criteria
Fields in org.apache.torque.criteria declared as JoinTypeModifier and TypeFieldDescriptionstatic final JoinTypeCriteria.INNER_JOIN"INNER JOIN" SQL statementstatic final JoinTypeCriteria.LEFT_JOIN"LEFT JOIN" SQL statementstatic final JoinTypeCriteria.RIGHT_JOIN"RIGHT JOIN" SQL statementMethods in org.apache.torque.criteria that return JoinTypeModifier and TypeMethodDescriptionFromElement.getJoinType()Returns the join type.final JoinTypeJoin.getJoinType()static JoinTypeReturns the enum constant of this class with the specified name.static JoinType[]JoinType.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.apache.torque.criteria with parameters of type JoinTypeModifier and TypeMethodDescriptionAdds a join to the criteria.Adds a join to the criteria, E.g. to create the conditionAdds a join to the criteria, E.g. to create the conditionCriteria.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 JoinTypeModifierConstructorDescriptionFromElement(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.Constructor with the comparison operator.Join(PreparedStatementPart leftTable, PreparedStatementPart rightTable, Criterion joinCondition, JoinType joinType) Constructor.