T - the generic typepublic interface ParamedMappedExecutor<T>
| Modifier and Type | Method and Description |
|---|---|
cn.featherfly.common.lang.AutoCloseableIterable<T> |
each()
query each.
|
cn.featherfly.common.lang.AutoCloseableIterable<T> |
each(int offset,
int limit)
query each.
|
java.util.List<T> |
list()
query list.
|
java.util.List<T> |
list(int offset,
int limit)
query list.
|
default java.util.List<T> |
list(cn.featherfly.common.structure.page.Page page)
query list.
|
cn.featherfly.common.structure.page.PaginationResults<T> |
pagination(int offset,
int limit)
query page.
|
default cn.featherfly.common.structure.page.PaginationResults<T> |
pagination(cn.featherfly.common.structure.page.Page page)
query page.
|
T |
single()
query single.
|
T |
unique()
query unique.
|
T single()
T unique()
cn.featherfly.common.lang.AutoCloseableIterable<T> each()
cn.featherfly.common.lang.AutoCloseableIterable<T> each(int offset, int limit)
offset - the offsetlimit - the limitjava.util.List<T> list()
java.util.List<T> list(int offset, int limit)
offset - the offsetlimit - the limitdefault java.util.List<T> list(cn.featherfly.common.structure.page.Page page)
page - the pagecn.featherfly.common.structure.page.PaginationResults<T> pagination(int offset, int limit)
offset - the offsetlimit - the limitdefault cn.featherfly.common.structure.page.PaginationResults<T> pagination(cn.featherfly.common.structure.page.Page page)
page - the page