Modifier and Type | Field and Description |
---|---|
static Where |
Where.EMPTY |
Modifier and Type | Method and Description |
---|---|
Where |
Where.and(String columnName,
Operator operator,
BigDecimal value) |
Where |
Where.and(String columnName,
Operator operator,
Boolean value) |
Where |
Where.and(String columnName,
Operator operator,
LocalDateTime value) |
Where |
Where.and(String columnName,
Operator operator,
Long value) |
Where |
Where.and(String columnName,
Operator operator,
String value) |
Where |
Where.and(Where where) |
static Where |
Where.isNotNull(String columnName) |
static Where |
Where.isNull(String columnName) |
Where |
Where.or(String columnName,
Operator operator,
BigDecimal value) |
Where |
Where.or(String columnName,
Operator operator,
Boolean value) |
Where |
Where.or(String columnName,
Operator operator,
LocalDateTime value) |
Where |
Where.or(String columnName,
Operator operator,
Long value) |
Where |
Where.or(String columnName,
Operator operator,
String value) |
static Where |
Where.where() |
static Where |
Where.where(String columnName,
Operator operator,
BigDecimal value) |
static Where |
Where.where(String columnName,
Operator operator,
Boolean value) |
static Where |
Where.where(String columnName,
Operator operator,
LocalDateTime value) |
static Where |
Where.where(String columnName,
Operator operator,
Long value) |
static Where |
Where.where(String columnName,
Operator operator,
String value) |
static Where |
Where.where(Where subWhere) |
Modifier and Type | Method and Description |
---|---|
Where |
Where.and(Where where) |
<T> T |
KeylessDao.foldingSelect(T identity,
BiFunction<T,ENTITY,T> accumulator,
Where where)
Computes a result based on the entities found by a select statement
without realizing the entire list of found entities in memory.
|
<T> T |
KeylessDaoImpl.foldingSelect(T identity,
BiFunction<T,ENTITY,T> accumulator,
Where where) |
BigDecimal |
KeylessDao.runBigDecimalFunction(SqlFunction function,
String columnName,
Where where)
Computes an aggregated BigDecimal value, based on the select criteria specified
and the given SqlFunction and column name.
|
BigDecimal |
KeylessDaoImpl.runBigDecimalFunction(SqlFunction function,
String columnName,
Where where) |
BigDecimal |
SqlRunner.runBigDecimalFunction(String sql,
Where where) |
Long |
KeylessDao.runLongFunction(SqlFunction function,
String columnName,
Where where)
Computes an aggregated Long value, based on the select criteria specified
and the given SqlFunction and column name.
|
Long |
KeylessDaoImpl.runLongFunction(SqlFunction function,
String columnName,
Where where) |
Long |
SqlRunner.runLongFunction(String sql,
Where where) |
List<ENTITY> |
KeylessDao.select(Where where)
Run a select in the data store for entities matching the given where predicates.
|
String |
KeylessSqlBuilder.select(Where where) |
List<ENTITY> |
KeylessDaoImpl.select(Where where) |
String |
KeylessSqlBuilder.selectFunction(SqlFunction function,
String columnName,
Where where) |
List<BUILDER> |
SqlRunner.selectWhere(String sql,
Supplier<BUILDER> supplier,
List<? extends ChildrenDescriptor<ENTITY,?,BUILDER,?>> childrenDescriptors,
Where where) |
static Where |
Where.where(Where subWhere) |
Constructor and Description |
---|
Where(Where subWhere) |
Copyright © 2019. All rights reserved.