AND_CB - The type of condition-bean for and-query.@FunctionalInterface public interface AndQuery<AND_CB extends ConditionBean>
cb.orScopeQuery(new OrQuery<FooCB>() {
public void query(FooCB orCB) {
orCB.query().setFoo...
orCB.orScopeQueryAndPart(new AndQuery<FooCB>() {
public void query(FooCB andCB) {
andCB.query().setBar...
andCB.query().setQux...
}
});
}
}
| 修飾子とタイプ | メソッドと説明 |
|---|---|
void |
query(AND_CB andCB)
Set up your query condition for and-query.
|
void query(AND_CB andCB)
andCB - The condition-bean for and-query. (NotNull)Copyright © 2014–2015 The DBFlute Project. All rights reserved.