Package | Description |
---|---|
com.j256.ormlite.stmt |
SQL statement generation and processing.
|
Modifier and Type | Method and Description |
---|---|
static QueryBuilder.JoinWhereOperation |
QueryBuilder.JoinWhereOperation.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryBuilder.JoinWhereOperation[] |
QueryBuilder.JoinWhereOperation.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
QueryBuilder<T,ID> |
QueryBuilder.join(QueryBuilder<?,?> joinedQueryBuilder,
QueryBuilder.JoinType type,
QueryBuilder.JoinWhereOperation operation)
Like
QueryBuilder.join(QueryBuilder) but allows you to specify the join type and the operation used to combine the
WHERE statements. |
QueryBuilder<T,ID> |
QueryBuilder.join(String localColumnName,
String joinedColumnName,
QueryBuilder<?,?> joinedQueryBuilder,
QueryBuilder.JoinType type,
QueryBuilder.JoinWhereOperation operation)
Similar to
QueryBuilder.join(QueryBuilder, JoinType, JoinWhereOperation) but this allows you to link two tables that
share a field of the same type. |
This documentation is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.