public class LQuery5<T1,T2,T3,T4,T5> extends QueryBase
| 限定符和类型 | 字段和说明 |
|---|---|
protected ClientQueryable5<T1,T2,T3,T4,T5> |
clientQueryable |
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
any() |
LQuery5<T1,T2,T3,T4,T5> |
distinct() |
LQuery5<T1,T2,T3,T4,T5> |
distinct(boolean condition) |
T1 |
firstNotNull() |
<R> R |
firstNotNull(Class<R> r) |
<R> R |
firstNotNull(Class<R> r,
String msg) |
<R> R |
firstNotNull(Class<R> r,
String msg,
String code) |
T1 |
firstNotNull(String msg) |
T1 |
firstNotNull(String msg,
String code) |
T1 |
firstNotNull(java.util.function.Supplier<RuntimeException> throwFunc) |
T1 |
firstOrNull() |
<R> R |
firstOrNull(Class<R> r) |
ClientQueryable5<T1,T2,T3,T4,T5> |
getClientQueryable() |
<Key> GroupedQuery5<Key,T1,T2,T3,T4,T5> |
groupBy(io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,Key>> expr) |
<Key> GroupedQuery5<Key,T1,T2,T3,T4,T5> |
groupBy(io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,Key> expr) |
<R> LQuery5<T1,T2,T3,T4,T5> |
include(io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R>> expr) |
<R> LQuery5<T1,T2,T3,T4,T5> |
include(io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R>> expr,
int groupSize) |
<R> LQuery5<T1,T2,T3,T4,T5> |
include(io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R> expr) |
<R> LQuery5<T1,T2,T3,T4,T5> |
include(io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R> expr,
int groupSize) |
<Tn> LQuery6<T1,T2,T3,T4,T5,Tn> |
innerJoin(Class<Tn> target,
io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean>> expr) |
<Tn> LQuery6<T1,T2,T3,T4,T5,Tn> |
innerJoin(Class<Tn> target,
io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean> func) |
<Tn> LQuery6<T1,T2,T3,T4,T5,Tn> |
innerJoin(LQuery<Tn> target,
io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean>> expr) |
<Tn> LQuery6<T1,T2,T3,T4,T5,Tn> |
innerJoin(LQuery<Tn> target,
io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean> func) |
<Tn> LQuery6<T1,T2,T3,T4,T5,Tn> |
leftJoin(Class<Tn> target,
io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean>> expr) |
<Tn> LQuery6<T1,T2,T3,T4,T5,Tn> |
leftJoin(Class<Tn> target,
io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean> func) |
<Tn> LQuery6<T1,T2,T3,T4,T5,Tn> |
leftJoin(LQuery<Tn> target,
io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean>> expr) |
<Tn> LQuery6<T1,T2,T3,T4,T5,Tn> |
leftJoin(LQuery<Tn> target,
io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean> func) |
LQuery5<T1,T2,T3,T4,T5> |
limit(long rows) |
LQuery5<T1,T2,T3,T4,T5> |
limit(long offset,
long rows) |
<R> LQuery5<T1,T2,T3,T4,T5> |
orderBy(io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R>> expr) |
<R> LQuery5<T1,T2,T3,T4,T5> |
orderBy(io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R>> expr,
boolean asc) |
<R> LQuery5<T1,T2,T3,T4,T5> |
orderBy(io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R> expr) |
<R> LQuery5<T1,T2,T3,T4,T5> |
orderBy(io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R> expr,
boolean asc) |
void |
required() |
void |
required(String msg) |
void |
required(String msg,
String code) |
void |
required(java.util.function.Supplier<RuntimeException> throwFunc) |
<Tn> LQuery6<T1,T2,T3,T4,T5,Tn> |
rightJoin(Class<Tn> target,
io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean>> expr) |
<Tn> LQuery6<T1,T2,T3,T4,T5,Tn> |
rightJoin(Class<Tn> target,
io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean> func) |
<Tn> LQuery6<T1,T2,T3,T4,T5,Tn> |
rightJoin(LQuery<Tn> target,
io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean>> expr) |
<Tn> LQuery6<T1,T2,T3,T4,T5,Tn> |
rightJoin(LQuery<Tn> target,
io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean> func) |
LQuery<T1> |
select() |
<R> LQuery<R> |
select(Class<R> r) |
<R> LQuery<R> |
select(io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R>> expr) |
<R> LQuery<R> |
select(io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R> expr) |
<R> EndQuery<R> |
selectAutoInclude(Class<R> r) |
<R> EndQuery<R> |
selectAutoInclude(io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R>> expr) |
<R> EndQuery<R> |
selectAutoInclude(io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R> expr) |
List<T1> |
toList() |
<R> List<R> |
toList(io.github.kiryu1223.expressionTree.delegate.Func1<T1,R> func) |
Map<String,Object> |
toMap() |
List<Map<String,Object>> |
toMaps() |
String |
toSQL() |
ToSQLResult |
toSQLResult() |
LQuery<T1> |
union(Collection<LQuery<T1>> qs) |
LQuery<T1> |
union(LQuery<T1> q1) |
LQuery<T1> |
union(LQuery<T1> q1,
LQuery<T1> q2) |
LQuery<T1> |
union(LQuery<T1> q1,
LQuery<T1> q2,
LQuery<T1> q3) |
LQuery<T1> |
unionAll(Collection<LQuery<T1>> qs) |
LQuery<T1> |
unionAll(LQuery<T1> q1) |
LQuery<T1> |
unionAll(LQuery<T1> q1,
LQuery<T1> q2) |
LQuery<T1> |
unionAll(LQuery<T1> q1,
LQuery<T1> q2,
LQuery<T1> q3) |
LQuery5<T1,T2,T3,T4,T5> |
where(io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,Boolean>> expr) |
LQuery5<T1,T2,T3,T4,T5> |
where(io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,Boolean> func) |
public <Tn> LQuery6<T1,T2,T3,T4,T5,Tn> innerJoin(Class<Tn> target, io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean> func)
public <Tn> LQuery6<T1,T2,T3,T4,T5,Tn> innerJoin(Class<Tn> target, io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean>> expr)
public <Tn> LQuery6<T1,T2,T3,T4,T5,Tn> innerJoin(LQuery<Tn> target, io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean> func)
public <Tn> LQuery6<T1,T2,T3,T4,T5,Tn> innerJoin(LQuery<Tn> target, io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean>> expr)
public <Tn> LQuery6<T1,T2,T3,T4,T5,Tn> leftJoin(Class<Tn> target, io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean> func)
public <Tn> LQuery6<T1,T2,T3,T4,T5,Tn> leftJoin(Class<Tn> target, io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean>> expr)
public <Tn> LQuery6<T1,T2,T3,T4,T5,Tn> leftJoin(LQuery<Tn> target, io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean> func)
public <Tn> LQuery6<T1,T2,T3,T4,T5,Tn> leftJoin(LQuery<Tn> target, io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean>> expr)
public <Tn> LQuery6<T1,T2,T3,T4,T5,Tn> rightJoin(Class<Tn> target, io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean> func)
public <Tn> LQuery6<T1,T2,T3,T4,T5,Tn> rightJoin(Class<Tn> target, io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean>> expr)
public <Tn> LQuery6<T1,T2,T3,T4,T5,Tn> rightJoin(LQuery<Tn> target, io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean> func)
public <Tn> LQuery6<T1,T2,T3,T4,T5,Tn> rightJoin(LQuery<Tn> target, io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func6<T1,T2,T3,T4,T5,Tn,Boolean>> expr)
public LQuery5<T1,T2,T3,T4,T5> where(io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,Boolean> func)
public LQuery5<T1,T2,T3,T4,T5> where(io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,Boolean>> expr)
public <R> LQuery5<T1,T2,T3,T4,T5> orderBy(io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R> expr, boolean asc)
public <R> LQuery5<T1,T2,T3,T4,T5> orderBy(io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R>> expr, boolean asc)
public <R> LQuery5<T1,T2,T3,T4,T5> orderBy(io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R> expr)
public <R> LQuery5<T1,T2,T3,T4,T5> orderBy(io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R>> expr)
public <Key> GroupedQuery5<Key,T1,T2,T3,T4,T5> groupBy(io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,Key> expr)
public <Key> GroupedQuery5<Key,T1,T2,T3,T4,T5> groupBy(io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,Key>> expr)
public <R> LQuery<R> select(io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R> expr)
public <R> LQuery<R> select(io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R>> expr)
public <R> EndQuery<R> selectAutoInclude(io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R> expr)
public <R> EndQuery<R> selectAutoInclude(io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R>> expr)
public <R> LQuery5<T1,T2,T3,T4,T5> include(io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R> expr, int groupSize)
public <R> LQuery5<T1,T2,T3,T4,T5> include(io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R>> expr, int groupSize)
public <R> LQuery5<T1,T2,T3,T4,T5> include(io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R> expr)
public <R> LQuery5<T1,T2,T3,T4,T5> include(io.github.kiryu1223.expressionTree.expressions.ExprTree<io.github.kiryu1223.expressionTree.delegate.Func5<T1,T2,T3,T4,T5,R>> expr)
public LQuery<T1> union(Collection<LQuery<T1>> qs)
public LQuery<T1> unionAll(Collection<LQuery<T1>> qs)
public boolean any()
public void required()
public void required(String msg)
public void required(java.util.function.Supplier<RuntimeException> throwFunc)
public T1 firstOrNull()
public <R> R firstOrNull(Class<R> r)
public T1 firstNotNull()
public T1 firstNotNull(java.util.function.Supplier<RuntimeException> throwFunc)
public <R> R firstNotNull(Class<R> r)
public String toSQL()
public ToSQLResult toSQLResult()
Copyright © 2024. All rights reserved.