| Modifier and Type | Method and Description |
|---|---|
Column |
ColumnCondition.getColumn()
Gets the column to be used in the select
|
static Column |
Columns.of(String name,
Object value)
Creates a column instance
|
static <V> Column |
Column.of(String name,
V value)
Creates a column instance
|
| Modifier and Type | Method and Description |
|---|---|
Optional<Column> |
ColumnEntity.find(String columnName)
Find column a column from columnName
|
List<Column> |
ColumnEntity.getColumns()
Returns all columns from this Column Family
|
static List<Column> |
Columns.of(Map<String,?> values)
Converts a Map to columns where: the key gonna be a column's name the value a column's value and null values
elements will be ignored.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ColumnEntity.add(Column column)
Appends the specified column to the end of this list
|
static ColumnCondition |
ColumnCondition.between(Column column)
Creates a
ColumnCondition that has a Condition.BETWEEN,
it means a select will scanning to a column family that is between two values informed
on a column name. |
ColumnCondition |
ColumnCondition.ColumnConditionProvider.between(Column column)
Creates a
Condition.BETWEEN operation |
static ColumnCondition |
ColumnCondition.eq(Column column)
Creates a
ColumnCondition that has a Condition.EQUALS, it means a select will scanning to a
column family that has the same name and equals value informed in this column. |
static ColumnCondition |
ColumnCondition.gt(Column column)
Creates a
ColumnCondition that has a Condition.GREATER_THAN, it means a select will scanning to a
column family that has the same name and the value greater than informed in this column. |
static ColumnCondition |
ColumnCondition.gte(Column column)
Creates a
ColumnCondition that has a Condition.GREATER_EQUALS_THAN,
it means a select will scanning to a column family that has the same name and the value
greater or equals than informed in this column. |
static ColumnCondition |
ColumnCondition.in(Column column)
Creates a
ColumnCondition that has a Condition.IN, it means a select will scanning to a
column family that has the same name and the value is within informed in this column. |
ColumnCondition |
ColumnCondition.ColumnConditionProvider.in(Column column)
Creates a
Condition.IN operation |
static ColumnCondition |
ColumnCondition.like(Column column)
Creates a
ColumnCondition that has a Condition.LIKE, it means a select will scanning to a
column family that has the same name and the value is like than informed in this column. |
static ColumnCondition |
ColumnCondition.lt(Column column)
Creates a
ColumnCondition that has a Condition.LESSER_THAN, it means a select will scanning to a
column family that has the same name and the value lesser than informed in this column. |
static ColumnCondition |
ColumnCondition.lte(Column column)
Creates a
ColumnCondition that has a Condition.LESSER_EQUALS_THAN,
it means a select will scanning to a column family that has the same name and the value
lesser or equals than informed in this column. |
| Modifier and Type | Method and Description |
|---|---|
void |
ColumnEntity.addAll(List<Column> columns)
Appends all of the columns in the column family to the end of this list.
|
static ColumnEntity |
ColumnEntity.of(String name,
List<Column> columns)
Creates a column family instance
|
Copyright © 2017–2021 Eclipse Foundation. All rights reserved.