public interface ColumnQuery
ColumnEntity| Modifier and Type | Interface and Description |
|---|---|
static interface |
ColumnQuery.ColumnFrom
The ColumnFrom Query
|
static interface |
ColumnQuery.ColumnLimit
The Column Order whose define the the maximum number of results to retrieve.
|
static interface |
ColumnQuery.ColumnNameCondition
The base to name condition
|
static interface |
ColumnQuery.ColumnNameOrder
The Column name order a query
|
static interface |
ColumnQuery.ColumnNotCondition
The column not condition
|
static interface |
ColumnQuery.ColumnOrder
The definition to either
SortType |
static interface |
ColumnQuery.ColumnQueryBuild
The last step to the build of
ColumnQuery. |
static interface |
ColumnQuery.ColumnSelect
The initial element in the Column query
|
static interface |
ColumnQuery.ColumnSelectProvider
A provider class of
ColumnQuery.ColumnSelect |
static interface |
ColumnQuery.ColumnSkip
The Column Order whose define the position of the first result to retrieve.
|
static interface |
ColumnQuery.ColumnWhere
The Column Where whose define the condition in the query.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getColumnFamily()
The column family name
|
List<String> |
getColumns()
Returns the columns to returns in that query if empty will return all elements in the query.
|
Optional<ColumnCondition> |
getCondition()
The conditions that contains in this
ColumnQuery
If empty, Optional.empty() is true, the implementation might either return an unsupported exception or returns same elements in the database. |
long |
getLimit() |
long |
getSkip() |
List<Sort> |
getSorts()
The sorts that contains in this
ColumnQuery
The implementation might ignore this option. |
static ColumnQuery.ColumnSelect |
select()
Creates a query to Column
|
static ColumnQuery.ColumnSelect |
select(String... columns)
Creates a query to Column
|
long getLimit()
long getSkip()
String getColumnFamily()
Optional<ColumnCondition> getCondition()
ColumnQuery
If empty, Optional.empty() is true, the implementation might either return an unsupported exception or returns same elements in the database.List<String> getColumns()
List<Sort> getSorts()
ColumnQuery
The implementation might ignore this option.static ColumnQuery.ColumnSelect select(String... columns)
columns - - The column fields to query, optional.ColumnQuery.ColumnSelect instanceNullPointerException - when there is a null elementstatic ColumnQuery.ColumnSelect select()
ColumnQuery.ColumnSelect instanceNullPointerException - when there is a null elementCopyright © 2017–2020 Eclipse Foundation. All rights reserved.