| Package | Description |
|---|---|
| org.sql.generation.api.grammar.builders.booleans |
This package contains builders for various boolean expressions.
|
| org.sql.generation.api.grammar.builders.modification |
Package to hold builders common for SQL modification clauses (
INSERT, UPDATE, and DELETE). |
| org.sql.generation.api.grammar.builders.query |
Package to hold builders for SQL queries (
SELECT -statements). |
| org.sql.generation.api.grammar.factories |
This package provides factories to create various builders and SQL syntax elements.
|
| Modifier and Type | Method and Description |
|---|---|
BooleanBuilder |
BooleanBuilder.and(BooleanExpression next)
Sets current expression as current expression
AND next. |
BooleanBuilder |
BooleanBuilder.not()
Sets current expression as
NOT current expression. |
BooleanBuilder |
BooleanBuilder.or(BooleanExpression next)
Sets current expression as current expression
OR next |
BooleanBuilder |
BooleanBuilder.reset(BooleanExpression newExpression)
Sets current expression as given parameter.
|
| Modifier and Type | Method and Description |
|---|---|
BooleanBuilder |
DeleteBySearchBuilder.getWhere()
Returns the builder for search condition for this
DELETE statement (boolean expression after
WHERE). |
BooleanBuilder |
UpdateBySearchBuilder.getWhereBuilder()
Returns the builder for search condition for this
UPDATE statement (boolean expression after
WHERE). |
| Modifier and Type | Method and Description |
|---|---|
BooleanBuilder |
QuerySpecificationBuilder.getHaving()
Gets the builder for grouping condition in
HAVING clause of this SELECT statement. |
BooleanBuilder |
QuerySpecificationBuilder.getWhere()
Gets the builder for search condition in
WHERE clause of this SELECT statement. |
| Modifier and Type | Method and Description |
|---|---|
QuerySpecificationBuilder |
QuerySpecificationBuilder.setHaving(BooleanBuilder builder)
Sets the builder for grouping condition in
HAVING clause of this SELECT statement. |
QuerySpecificationBuilder |
QuerySpecificationBuilder.setWhere(BooleanBuilder builder)
Sets the builder for search condition in
WHERE clause of this SELECT statement. |
| Modifier and Type | Method and Description |
|---|---|
BooleanBuilder |
BooleanFactory.booleanBuilder()
Returns new
BooleanBuilder with Predicate.EmptyPredicate as initial value. |
BooleanBuilder |
BooleanFactory.booleanBuilder(BooleanExpression first)
Returns new
BooleanBuilder with given boolean expression as initial value. |
Copyright © 2010-2012. All Rights Reserved.