-
Notifications
You must be signed in to change notification settings - Fork 350
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add documentation for JdbcAggregateTemplate.
- Loading branch information
Showing
3 changed files
with
66 additions
and
20 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
src/main/antora/modules/ROOT/pages/commons/criteria-methods.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
=== Methods for the Criteria Class | ||
|
||
The `Criteria` class provides the following methods, all of which correspond to SQL operators: | ||
|
||
* `Criteria` *and* `(String column)`: Adds a chained `Criteria` with the specified `property` to the current `Criteria` and returns the newly created one. | ||
* `Criteria` *or* `(String column)`: Adds a chained `Criteria` with the specified `property` to the current `Criteria` and returns the newly created one. | ||
* `Criteria` *greaterThan* `(Object o)`: Creates a criterion by using the `>` operator. | ||
* `Criteria` *greaterThanOrEquals* `(Object o)`: Creates a criterion by using the `>=` operator. | ||
* `Criteria` *in* `(Object... o)`: Creates a criterion by using the `IN` operator for a varargs argument. | ||
* `Criteria` *in* `(Collection<?> collection)`: Creates a criterion by using the `IN` operator using a collection. | ||
* `Criteria` *is* `(Object o)`: Creates a criterion by using column matching (`property = value`). | ||
* `Criteria` *isNull* `()`: Creates a criterion by using the `IS NULL` operator. | ||
* `Criteria` *isNotNull* `()`: Creates a criterion by using the `IS NOT NULL` operator. | ||
* `Criteria` *lessThan* `(Object o)`: Creates a criterion by using the `<` operator. | ||
* `Criteria` *lessThanOrEquals* `(Object o)`: Creates a criterion by using the `<=` operator. | ||
* `Criteria` *like* `(Object o)`: Creates a criterion by using the `LIKE` operator without escape character processing. | ||
* `Criteria` *not* `(Object o)`: Creates a criterion by using the `!=` operator. | ||
* `Criteria` *notIn* `(Object... o)`: Creates a criterion by using the `NOT IN` operator for a varargs argument. | ||
* `Criteria` *notIn* `(Collection<?> collection)`: Creates a criterion by using the `NOT IN` operator using a collection. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters