| Package | Description |
|---|---|
| me.chyxion.tigon.mybatis |
| Modifier and Type | Method and Description |
|---|---|
Search |
Search.and(Search search)
and another search
|
Search |
Search.asc(String col)
order by col asc
|
Search |
Search.attr(String name,
Object value)
set attr
|
Search |
Search.between(String col,
Object bottom,
Object top)
col between value1 and value2
|
Search |
Search.build(Consumer<ProcArg> builder)
build custom search criterion
|
Search |
Search.clearCriteria()
clear criteria
|
Search |
Search.clearOrders()
clear orders
|
Search |
Search.contains(String col,
String value)
col contains value
|
Search |
Search.desc(String col)
order by col desc
|
Search |
Search.endsWith(String col,
String value)
col ends with value
|
Search |
Search.eq(String col,
Object value)
col eq
|
Search |
Search.gt(String col,
Object value)
col is greater than value
|
Search |
Search.gte(String col,
Object value)
col is greater than value or equals value
|
Search |
Search.in(String col,
Collection<?> values)
col in values list
|
Search |
Search.in(String col,
Object[] values)
col in values array
|
Search |
Search.isNull(String col)
col is null
|
Search |
Search.like(String col,
String value)
col like value
|
Search |
Search.like(String col,
String value,
boolean wrapValue)
col like value
|
Search |
Search.limit(Integer limit)
set limit
|
Search |
Search.lt(String col,
Object value)
col is less than value
|
Search |
Search.lte(String col,
Object value)
col is less than value or equals value
|
Search |
Search.ne(String col,
Object value)
col not eq value
|
Search |
Search.notBetween(String col,
Object bottom,
Object top)
col not between value1 and value2
|
Search |
Search.notContains(String col,
String value)
col not contains value
|
Search |
Search.notEndsWith(String col,
String value)
col not ends with value
|
Search |
Search.notIn(String col,
Collection<?> values)
col is not not in values
|
Search |
Search.notIn(String col,
Object[] values)
col is not not in values
|
Search |
Search.notLike(String col,
String value)
col not like value
|
Search |
Search.notLike(String col,
String value,
boolean wrapValue)
col not like value
|
Search |
Search.notNull(String col)
col is not null
|
Search |
Search.notStartsWith(String col,
String value)
col not starts with value
|
Search |
Search.offset(Integer offset)
set offset
|
Search |
Search.or(Search search)
or another search
|
Search |
Search.or(String col,
Object value)
or col eq val
|
Search |
Search.orderBy(String col,
Search.Order order)
order by
|
Search |
Search.setAttr(String name,
Object value)
set attr
|
Search |
Search.startsWith(String col,
String value)
col starts with value
|
Search |
Search.table(String table)
set table
|
| Modifier and Type | Method and Description |
|---|---|
Search |
Search.and(Search search)
and another search
|
Search |
Search.or(Search search)
or another search
|
Copyright © 2020. All rights reserved.