CB - The type of condition-bean for specification.@FunctionalInterface public interface SpecifyQuery<CB extends ConditionBean>
cb.columnQuery(new SpecifyQuery<LandCB>() {
public void query(LandCB spCB) {
spCB.specify().columnLand...();
}
}).lessThan(new SpecifyQuery<SeaCB>() {
public void query(SeaCB spCB) {
spCB.specify().columnSea...();
}
});
| 修飾子とタイプ | メソッドと説明 |
|---|---|
void |
specify(CB spCB)
Specify your column for query.
|
void specify(CB spCB)
spCB - The condition-bean for specification. (NotNull)Copyright © 2014–2015 The DBFlute Project. All rights reserved.