public static interface ColumnQuery.ColumnWhere extends ColumnQuery.ColumnQueryBuild
| Modifier and Type | Method and Description |
|---|---|
ColumnQuery.ColumnNameCondition |
and(String name)
Starts a new condition in the select using
ColumnCondition.and(ColumnCondition) |
ColumnQuery.ColumnLimit |
limit(long limit)
Defines the maximum number of results to retrieve.
|
ColumnQuery.ColumnNameCondition |
or(String name)
Appends a new condition in the select using
ColumnCondition.or(ColumnCondition) |
ColumnQuery.ColumnOrder |
orderBy(String name)
Add the order how the result will returned
|
ColumnQuery.ColumnSkip |
skip(long skip)
Defines the position of the first result to retrieve.
|
build, getResult, getSingleResultColumnQuery.ColumnNameCondition and(String name)
ColumnCondition.and(ColumnCondition)name - a condition to be addedColumnQuery.ColumnNameCondition with the condition appendedNullPointerException - when condition is nullColumnQuery.ColumnNameCondition or(String name)
ColumnCondition.or(ColumnCondition)name - a condition to be addedColumnQuery.ColumnNameCondition with the condition appendedNullPointerException - when condition is nullColumnQuery.ColumnSkip skip(long skip)
skip - the first result to retriveColumnQuery.ColumnLimit limit(long limit)
limit - the limitColumnQuery.ColumnOrder orderBy(String name)
name - the name to orderNullPointerException - when name is nullCopyright © 2017–2021 Eclipse Foundation. All rights reserved.