E0 - the generic typepublic interface ArrayParamsQueryExecutor<E0>
| Modifier and Type | Method and Description |
|---|---|
boolean |
bool(E0 execution,
java.io.Serializable... params)
query boolean value, use query str in template find with executeId.
|
default java.lang.Boolean |
boolType(E0 execution,
java.io.Serializable... params)
query boolean value, use query str in template find with executeId.
|
double |
doubleValue(E0 execution,
java.io.Serializable... params)
query double value, use query str in template find with executeId.
|
<T> cn.featherfly.common.lang.AutoCloseableIterable<T> |
each(E0 execution,
java.lang.Class<T> mappingType,
java.io.Serializable... params)
query each, use query str in template find with executeId.
|
<T> cn.featherfly.common.lang.AutoCloseableIterable<T> |
each(E0 execution,
java.lang.Class<T> mappingType,
java.io.Serializable[] params,
int offset,
int limit)
query each, use query str in template find with executeId.
|
default <T> cn.featherfly.common.lang.AutoCloseableIterable<T> |
each(E0 execution,
java.lang.Class<T> mappingType,
java.io.Serializable[] params,
cn.featherfly.common.structure.page.Page page)
query each, use query str in template find with executeId.
|
<T> cn.featherfly.common.lang.AutoCloseableIterable<T> |
each(E0 execution,
RowMapper<T> rowMapper,
java.io.Serializable... params)
query each, use query str in template find with executeId.
|
<T> cn.featherfly.common.lang.AutoCloseableIterable<T> |
each(E0 execution,
RowMapper<T> rowMapper,
java.io.Serializable[] params,
int offset,
int limit)
query each, use query str in template find with executeId.
|
default <T> cn.featherfly.common.lang.AutoCloseableIterable<T> |
each(E0 execution,
RowMapper<T> rowMapper,
java.io.Serializable[] params,
cn.featherfly.common.structure.page.Page page)
query each, use query str in template find with executeId.
|
cn.featherfly.common.lang.AutoCloseableIterable<java.util.Map<java.lang.String,java.io.Serializable>> |
each(E0 execution,
java.io.Serializable... params)
query each, use query str in template find with executeId.
|
cn.featherfly.common.lang.AutoCloseableIterable<java.util.Map<java.lang.String,java.io.Serializable>> |
each(E0 execution,
java.io.Serializable[] params,
int offset,
int limit)
query each, use query str in template find with executeId.
|
default cn.featherfly.common.lang.AutoCloseableIterable<java.util.Map<java.lang.String,java.io.Serializable>> |
each(E0 execution,
java.io.Serializable[] params,
cn.featherfly.common.structure.page.Page page)
query each, use query str in template find with executeId.
|
int |
intValue(E0 execution,
java.io.Serializable... params)
query int value, use query str in template find with executeId.
|
<T> java.util.List<T> |
list(E0 execution,
java.lang.Class<T> mappingType,
java.io.Serializable... params)
query list, use query str in template find with executeId.
|
<T> java.util.List<T> |
list(E0 execution,
java.lang.Class<T> mappingType,
java.io.Serializable[] params,
int offset,
int limit)
query list, use query str in template find with executeId.
|
default <T> java.util.List<T> |
list(E0 execution,
java.lang.Class<T> mappingType,
java.io.Serializable[] params,
cn.featherfly.common.structure.page.Page page)
query list, use query str in template find with executeId.
|
<T> java.util.List<T> |
list(E0 execution,
RowMapper<T> rowMapper,
java.io.Serializable... params)
query list, use query str in template find with executeId.
|
<T> java.util.List<T> |
list(E0 execution,
RowMapper<T> rowMapper,
java.io.Serializable[] params,
int offset,
int limit)
query list, use query str in template find with executeId.
|
default <T> java.util.List<T> |
list(E0 execution,
RowMapper<T> rowMapper,
java.io.Serializable[] params,
cn.featherfly.common.structure.page.Page page)
query list, use query str in template find with executeId.
|
java.util.List<java.util.Map<java.lang.String,java.io.Serializable>> |
list(E0 execution,
java.io.Serializable... params)
query list, use query str in template find with executeId.
|
java.util.List<java.util.Map<java.lang.String,java.io.Serializable>> |
list(E0 execution,
java.io.Serializable[] params,
int offset,
int limit)
query list, use query str in template find with executeId.
|
default java.util.List<java.util.Map<java.lang.String,java.io.Serializable>> |
list(E0 execution,
java.io.Serializable[] params,
cn.featherfly.common.structure.page.Page page)
query list, use query str in template find with executeId.
|
long |
longValue(E0 execution,
java.io.Serializable... params)
query long value, use query str in template find with executeId.
|
default <N extends java.lang.Number> |
number(E0 execution,
java.lang.Class<N> numberType,
java.io.Serializable... params)
query number value, use query str in template find with executeId.
|
default java.math.BigDecimal |
numberBigDecimal(E0 execution,
java.io.Serializable... params)
query BigDecimal value, use query str in template find with executeId.
|
default java.math.BigInteger |
numberBigInteger(E0 execution,
java.io.Serializable... params)
query BigInteger value, use query str in template find with executeId.
|
default java.lang.Double |
numberDouble(E0 execution,
java.io.Serializable... params)
query double value, use query str in template find with executeId.
|
default java.lang.Integer |
numberInt(E0 execution,
java.io.Serializable... params)
query int value, use query str in template find with executeId.
|
default java.lang.Long |
numberLong(E0 execution,
java.io.Serializable... params)
query long value, use query str in template find with executeId.
|
<T> cn.featherfly.common.structure.page.PaginationResults<T> |
pagination(E0 execution,
java.lang.Class<T> mappingType,
java.io.Serializable[] params,
int offset,
int limit)
query page, use query str in template find with executeId.
|
default <T> cn.featherfly.common.structure.page.PaginationResults<T> |
pagination(E0 execution,
java.lang.Class<T> mappingType,
java.io.Serializable[] params,
cn.featherfly.common.structure.page.Page page)
query page, use query str in template find with executeId.
|
<T> cn.featherfly.common.structure.page.PaginationResults<T> |
pagination(E0 execution,
RowMapper<T> rowMapper,
java.io.Serializable[] params,
int offset,
int limit)
query page, use query str in template find with executeId.
|
default <T> cn.featherfly.common.structure.page.PaginationResults<T> |
pagination(E0 execution,
RowMapper<T> rowMapper,
java.io.Serializable[] params,
cn.featherfly.common.structure.page.Page page)
query page, use query str in template find with executeId.
|
cn.featherfly.common.structure.page.PaginationResults<java.util.Map<java.lang.String,java.io.Serializable>> |
pagination(E0 execution,
java.io.Serializable[] params,
int offset,
int limit)
query page, use query str in template find with executeId.
|
default cn.featherfly.common.structure.page.PaginationResults<java.util.Map<java.lang.String,java.io.Serializable>> |
pagination(E0 execution,
java.io.Serializable[] params,
cn.featherfly.common.structure.page.Page page)
query page, use query str in template find with executeId.
|
<T> T |
single(E0 execution,
java.lang.Class<T> mappingType,
java.io.Serializable... params)
query single, use query str in template find with executeId.
|
<T> T |
single(E0 execution,
RowMapper<T> rowMapper,
java.io.Serializable... params)
query single, use query str in template find with executeId.
|
java.util.Map<java.lang.String,java.io.Serializable> |
single(E0 execution,
java.io.Serializable... params)
query single, use query str in template find with executeId.
|
default java.lang.String |
string(E0 execution,
java.io.Serializable... params)
query string value, use query str in template find with executeId.
|
<T> T |
unique(E0 execution,
java.lang.Class<T> mappingType,
java.io.Serializable... params)
query unique, use query str in template find with executeId.
|
<T> T |
unique(E0 execution,
RowMapper<T> rowMapper,
java.io.Serializable... params)
query unique, use query str in template find with executeId.
|
java.util.Map<java.lang.String,java.io.Serializable> |
unique(E0 execution,
java.io.Serializable... params)
query unique, use query str in template find with executeId.
|
<V> V |
value(E0 execution,
java.lang.Class<V> valueType,
java.io.Serializable... params)
query value, use query str in template find with executeId.
|
<V> V |
value(E0 execution,
java.io.Serializable... params)
query value, use query str in template find with executeId.
|
boolean bool(E0 execution, java.io.Serializable... params)
execution - the executionparams - the paramsint intValue(E0 execution, java.io.Serializable... params)
execution - the executionparams - the paramslong longValue(E0 execution, java.io.Serializable... params)
execution - the executionparams - the paramsdouble doubleValue(E0 execution, java.io.Serializable... params)
execution - the executionparams - the params<V> V value(E0 execution, java.io.Serializable... params)
V - the value typeexecution - the executionparams - the params<V> V value(E0 execution, java.lang.Class<V> valueType, java.io.Serializable... params)
V - the value typeexecution - the executionvalueType - the value typeparams - the paramsdefault <N extends java.lang.Number> N number(E0 execution, java.lang.Class<N> numberType, java.io.Serializable... params)
N - the number typeexecution - the executionnumberType - the number typeparams - the paramsdefault java.lang.Integer numberInt(E0 execution, java.io.Serializable... params)
execution - the executionparams - the paramsdefault java.lang.Long numberLong(E0 execution, java.io.Serializable... params)
execution - the executionparams - the paramsdefault java.lang.Double numberDouble(E0 execution, java.io.Serializable... params)
execution - the executionparams - the paramsdefault java.math.BigInteger numberBigInteger(E0 execution, java.io.Serializable... params)
execution - the executionparams - the paramsdefault java.math.BigDecimal numberBigDecimal(E0 execution, java.io.Serializable... params)
execution - the executionparams - the paramsdefault java.lang.Boolean boolType(E0 execution, java.io.Serializable... params)
execution - the executionparams - the paramsdefault java.lang.String string(E0 execution, java.io.Serializable... params)
execution - the executionparams - the paramsjava.util.Map<java.lang.String,java.io.Serializable> single(E0 execution, java.io.Serializable... params)
execution - the executionparams - the params<T> T single(E0 execution, java.lang.Class<T> mappingType, java.io.Serializable... params)
T - the generic typeexecution - the executionmappingType - mapping typeparams - the params<T> T single(E0 execution, RowMapper<T> rowMapper, java.io.Serializable... params)
T - the generic typeexecution - the executionrowMapper - the row mapperparams - the paramsjava.util.Map<java.lang.String,java.io.Serializable> unique(E0 execution, java.io.Serializable... params)
execution - the executionparams - the params<T> T unique(E0 execution, java.lang.Class<T> mappingType, java.io.Serializable... params)
T - the element typeexecution - the executionmappingType - mapping typeparams - the params<T> T unique(E0 execution, RowMapper<T> rowMapper, java.io.Serializable... params)
T - the element typeexecution - the executionrowMapper - the row mapperparams - the paramsjava.util.List<java.util.Map<java.lang.String,java.io.Serializable>> list(E0 execution, java.io.Serializable... params)
execution - the executionparams - the params<T> java.util.List<T> list(E0 execution, java.lang.Class<T> mappingType, java.io.Serializable... params)
T - the element typeexecution - the executionmappingType - mapping typeparams - the params<T> java.util.List<T> list(E0 execution, RowMapper<T> rowMapper, java.io.Serializable... params)
T - the generic typeexecution - the executionrowMapper - the row mapperparams - the paramsjava.util.List<java.util.Map<java.lang.String,java.io.Serializable>> list(E0 execution, java.io.Serializable[] params, int offset, int limit)
execution - the executionparams - the paramsoffset - the offsetlimit - the limit<T> java.util.List<T> list(E0 execution, java.lang.Class<T> mappingType, java.io.Serializable[] params, int offset, int limit)
T - the element typeexecution - the executionmappingType - mapping typeparams - the paramsoffset - the offsetlimit - the limit<T> java.util.List<T> list(E0 execution, RowMapper<T> rowMapper, java.io.Serializable[] params, int offset, int limit)
T - the element typeexecution - the executionrowMapper - the row mapperparams - the paramsoffset - the offsetlimit - the limitdefault <T> java.util.List<T> list(E0 execution, java.lang.Class<T> mappingType, java.io.Serializable[] params, cn.featherfly.common.structure.page.Page page)
T - the element typeexecution - the executionmappingType - mapping typeparams - the paramspage - the pagedefault <T> java.util.List<T> list(E0 execution, RowMapper<T> rowMapper, java.io.Serializable[] params, cn.featherfly.common.structure.page.Page page)
T - the element typeexecution - the executionrowMapper - the row mapperparams - the paramspage - the pagedefault java.util.List<java.util.Map<java.lang.String,java.io.Serializable>> list(E0 execution, java.io.Serializable[] params, cn.featherfly.common.structure.page.Page page)
execution - the executionparams - the paramspage - the pagecn.featherfly.common.lang.AutoCloseableIterable<java.util.Map<java.lang.String,java.io.Serializable>> each(E0 execution, java.io.Serializable... params)
execution - the executionparams - the params<T> cn.featherfly.common.lang.AutoCloseableIterable<T> each(E0 execution, java.lang.Class<T> mappingType, java.io.Serializable... params)
T - the element typeexecution - the executionmappingType - mapping typeparams - the params<T> cn.featherfly.common.lang.AutoCloseableIterable<T> each(E0 execution, RowMapper<T> rowMapper, java.io.Serializable... params)
T - the generic typeexecution - the executionrowMapper - the row mapperparams - the paramscn.featherfly.common.lang.AutoCloseableIterable<java.util.Map<java.lang.String,java.io.Serializable>> each(E0 execution, java.io.Serializable[] params, int offset, int limit)
execution - the executionparams - the paramsoffset - the offsetlimit - the limit<T> cn.featherfly.common.lang.AutoCloseableIterable<T> each(E0 execution, java.lang.Class<T> mappingType, java.io.Serializable[] params, int offset, int limit)
T - the element typeexecution - the executionmappingType - mapping typeparams - the paramsoffset - the offsetlimit - the limit<T> cn.featherfly.common.lang.AutoCloseableIterable<T> each(E0 execution, RowMapper<T> rowMapper, java.io.Serializable[] params, int offset, int limit)
T - the element typeexecution - the executionrowMapper - the row mapperparams - the paramsoffset - the offsetlimit - the limitdefault <T> cn.featherfly.common.lang.AutoCloseableIterable<T> each(E0 execution, java.lang.Class<T> mappingType, java.io.Serializable[] params, cn.featherfly.common.structure.page.Page page)
T - the element typeexecution - the executionmappingType - mapping typeparams - the paramspage - the pagedefault <T> cn.featherfly.common.lang.AutoCloseableIterable<T> each(E0 execution, RowMapper<T> rowMapper, java.io.Serializable[] params, cn.featherfly.common.structure.page.Page page)
T - the element typeexecution - the executionrowMapper - the row mapperparams - the paramspage - the pagedefault cn.featherfly.common.lang.AutoCloseableIterable<java.util.Map<java.lang.String,java.io.Serializable>> each(E0 execution, java.io.Serializable[] params, cn.featherfly.common.structure.page.Page page)
execution - the executionparams - the paramspage - the pagecn.featherfly.common.structure.page.PaginationResults<java.util.Map<java.lang.String,java.io.Serializable>> pagination(E0 execution, java.io.Serializable[] params, int offset, int limit)
execution - the executionparams - the paramsoffset - the offsetlimit - the limitdefault cn.featherfly.common.structure.page.PaginationResults<java.util.Map<java.lang.String,java.io.Serializable>> pagination(E0 execution, java.io.Serializable[] params, cn.featherfly.common.structure.page.Page page)
execution - the executionparams - the paramspage - the page<T> cn.featherfly.common.structure.page.PaginationResults<T> pagination(E0 execution, java.lang.Class<T> mappingType, java.io.Serializable[] params, int offset, int limit)
T - the element typeexecution - the executionmappingType - mapping typeparams - the paramsoffset - the offsetlimit - the limit<T> cn.featherfly.common.structure.page.PaginationResults<T> pagination(E0 execution, RowMapper<T> rowMapper, java.io.Serializable[] params, int offset, int limit)
T - the element typeexecution - the executionrowMapper - the row mapperparams - the paramsoffset - the offsetlimit - the limitdefault <T> cn.featherfly.common.structure.page.PaginationResults<T> pagination(E0 execution, java.lang.Class<T> mappingType, java.io.Serializable[] params, cn.featherfly.common.structure.page.Page page)
T - the element typeexecution - the executionmappingType - mapping typeparams - the paramspage - the pagedefault <T> cn.featherfly.common.structure.page.PaginationResults<T> pagination(E0 execution, RowMapper<T> rowMapper, java.io.Serializable[] params, cn.featherfly.common.structure.page.Page page)
T - the element typeexecution - the executionrowMapper - the row mapperparams - the paramspage - the page