public interface ParamedQueryExecutor extends ParamedQuerySingleExecutor, ParamedQueryUniqueExecutor, ParamedQueryListExecutor, ParamedQueryEachExecutor
| Modifier and Type | Method and Description |
|---|---|
default java.math.BigDecimal |
bigDecimal()
query bigDecimal value.
|
default java.math.BigInteger |
bigInteger()
query bigInteger value.
|
boolean |
bool()
query boolean.
|
default java.lang.Boolean |
boolType()
query boolean wrapper type.
|
double |
doubleValue()
query double value.
|
default int |
int32()
query 32 bit integer(int).
|
default long |
int64()
query 64 bit integer(long).
|
int |
intValue()
query int value.
|
long |
longValue()
query long value.
|
<T> ParamedMappedExecutor<T> |
mapper(java.lang.Class<T> mappingType)
Mapper.
|
<T1,T2> ParamedMappedExecutor<com.speedment.common.tuple.Tuple2<T1,T2>> |
mapper(java.lang.Class<T1> type1,
java.lang.Class<T2> type2)
Mapper.
|
<T1,T2,T3> ParamedMappedExecutor<com.speedment.common.tuple.Tuple3<T1,T2,T3>> |
mapper(java.lang.Class<T1> type1,
java.lang.Class<T2> type2,
java.lang.Class<T3> type3)
Mapper.
|
<T1,T2,T3,T4> |
mapper(java.lang.Class<T1> type1,
java.lang.Class<T2> type2,
java.lang.Class<T3> type3,
java.lang.Class<T4> type4)
Mapper.
|
<T1,T2,T3,T4,T5> |
mapper(java.lang.Class<T1> type1,
java.lang.Class<T2> type2,
java.lang.Class<T3> type3,
java.lang.Class<T4> type4,
java.lang.Class<T5> type5)
Mapper.
|
<T1,T2,T3,T4,T5,T6> |
mapper(java.lang.Class<T1> type1,
java.lang.Class<T2> type2,
java.lang.Class<T3> type3,
java.lang.Class<T4> type4,
java.lang.Class<T5> type5,
java.lang.Class<T6> type6)
Mapper.
|
<T> ParamedMappedExecutor<T> |
mapper(java.util.function.Function<TupleMapperBuilder,ParamedMappedExecutor<T>> mapperBuilderFunction)
Mapper.
|
default <N extends java.lang.Number> |
number(java.lang.Class<N> numberType)
query number value.
|
default java.math.BigDecimal |
numberBigDecimal()
query bigDecimal value.
|
default java.math.BigInteger |
numberBigInteger()
query bigInteger value.
|
default java.lang.Double |
numberDouble()
query double value.
|
default java.lang.Integer |
numberInt()
query int value.
|
default java.lang.Long |
numberLong()
query long value.
|
default java.lang.String |
string()
query string value.
|
<V> V |
value(java.lang.Class<V> valueType)
query value.
|
single, single, singleunique, unique, uniquelist, list, listeach, each, each<T> ParamedMappedExecutor<T> mapper(java.lang.Class<T> mappingType)
T - the generic typemappingType - the map type<T1,T2> ParamedMappedExecutor<com.speedment.common.tuple.Tuple2<T1,T2>> mapper(java.lang.Class<T1> type1, java.lang.Class<T2> type2)
T1 - the generic typeT2 - the generic typetype1 - the type 1type2 - the type 2<T1,T2,T3> ParamedMappedExecutor<com.speedment.common.tuple.Tuple3<T1,T2,T3>> mapper(java.lang.Class<T1> type1, java.lang.Class<T2> type2, java.lang.Class<T3> type3)
T1 - the generic typeT2 - the generic typeT3 - the generic typetype1 - the type 1type2 - the type 2type3 - the type 3<T1,T2,T3,T4> ParamedMappedExecutor<com.speedment.common.tuple.Tuple4<T1,T2,T3,T4>> mapper(java.lang.Class<T1> type1, java.lang.Class<T2> type2, java.lang.Class<T3> type3, java.lang.Class<T4> type4)
T1 - the generic typeT2 - the generic typeT3 - the generic typeT4 - the generic typetype1 - the type 1type2 - the type 2type3 - the type 3type4 - the type 4<T1,T2,T3,T4,T5> ParamedMappedExecutor<com.speedment.common.tuple.Tuple5<T1,T2,T3,T4,T5>> mapper(java.lang.Class<T1> type1, java.lang.Class<T2> type2, java.lang.Class<T3> type3, java.lang.Class<T4> type4, java.lang.Class<T5> type5)
T1 - the generic typeT2 - the generic typeT3 - the generic typeT4 - the generic typeT5 - the generic typetype1 - the type 1type2 - the type 2type3 - the type 3type4 - the type 4type5 - the type 5<T1,T2,T3,T4,T5,T6> ParamedMappedExecutor<com.speedment.common.tuple.Tuple6<T1,T2,T3,T4,T5,T6>> mapper(java.lang.Class<T1> type1, java.lang.Class<T2> type2, java.lang.Class<T3> type3, java.lang.Class<T4> type4, java.lang.Class<T5> type5, java.lang.Class<T6> type6)
T1 - the generic typeT2 - the generic typeT3 - the generic typeT4 - the generic typeT5 - the generic typeT6 - the generic typetype1 - the type 1type2 - the type 2type3 - the type 3type4 - the type 4type5 - the type 5type6 - the type 6<T> ParamedMappedExecutor<T> mapper(java.util.function.Function<TupleMapperBuilder,ParamedMappedExecutor<T>> mapperBuilderFunction)
T - the generic typemapperBuilderFunction - the mapper builder functiondefault int int32()
int intValue()
default long int64()
long longValue()
double doubleValue()
boolean bool()
boolType() instead.default java.lang.Boolean boolType()
<V> V value(java.lang.Class<V> valueType)
V - the value typevalueType - the value typedefault <N extends java.lang.Number> N number(java.lang.Class<N> numberType)
N - the number typenumberType - the number typedefault java.lang.Integer numberInt()
default java.lang.Long numberLong()
default java.lang.Double numberDouble()
default java.math.BigInteger numberBigInteger()
default java.math.BigDecimal numberBigDecimal()
default java.math.BigInteger bigInteger()
default java.math.BigDecimal bigDecimal()
default java.lang.String string()