| Modifier and Type | Field and Description | 
|---|---|
static Operator | 
Operator.EQUALS
An instance that represents the equality ('=') operator. 
 | 
static Operator | 
Operator.GREATER_THAN
An instance that represents the greater than ('>') operator. 
 | 
static Operator | 
Operator.GREATER_THAN_OR_EQUALS
An instance that represents the greater than or equals ('>=') operator. 
 | 
static Operator | 
Operator.LESS_THAN
An instance that represents the less than ('<') operator. 
 | 
static Operator | 
Operator.LESS_THAN_OR_EQUALS
An instance that represents the less than or equals ('<=') operator. 
 | 
static Operator | 
Operator.LIKE
An instance that represents the 'LIKE' operator to be used
 for string fields. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Operator | 
Operator.closedRangeTo(BigDecimal upperLimit)
To search for items in a range of values, inclusive of the endpoints,
 where the field is a decimal type. 
 | 
static Operator | 
Operator.closedRangeTo(LocalDateTime upperLimit)
To search for items in a range of values, inclusive of the endpoints,
 where the field is a date type. 
 | 
static Operator | 
Operator.closedRangeTo(long upperLimit)
To search for items in a range of values, inclusive of the endpoints,
 where the field is an integer type. 
 | 
static Operator | 
Operator.openRangeTo(BigDecimal upperLimit)
To search for items in a range of values, not-inclusive of the endpoints,
 where the field is a de
 cimal type. 
 | 
static Operator | 
Operator.openRangeTo(LocalDateTime upperLimit)
To search for items in a range of values, not-inclusive of the endpoints,
 where the field is a date type. 
 | 
static Operator | 
Operator.openRangeTo(long upperLimit)
To search for items in a range of values, not-inclusive of the endpoints,
 where the field is an integer type. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
List<ENTITY> | 
KeylessDao.selectManyByColumns(ENTITY template,
                   Map<String,Operator> columnNames)
Select multiple records from the database by some search criteria. 
 | 
List<ENTITY> | 
KeylessDaoImpl.selectManyByColumns(ENTITY template,
                   Map<String,Operator> columnNamesMap)  | 
| Constructor and Description | 
|---|
SelectColumnList(Map<String,Operator> columnNameOperatorMap)  | 
Copyright © 2019. All rights reserved.