Package org.mybatis.dynamic.sql.where
Interface WhereApplier
-
- All Superinterfaces:
Consumer<AbstractWhereDSL<?>>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface WhereApplier extends Consumer<AbstractWhereDSL<?>>
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default WhereApplier
andThen(WhereApplier after)
Return a composed where applier that performs this operation followed by the after operation.
-
-
-
Method Detail
-
andThen
default WhereApplier andThen(WhereApplier after)
Return a composed where applier that performs this operation followed by the after operation.- Parameters:
after
- the operation to perform after this operation- Returns:
- a composed where applier that performs this operation followed by the after operation.
-
-