Package guru.mikelue.jdut.operation
Interface DataGrainOperator.SurroundOperator
-
- All Known Implementing Classes:
DatabaseTransactional
- Enclosing interface:
- DataGrainOperator
- 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 static interface DataGrainOperator.SurroundOperator
The operator for surrounding ofDataGrainOperator.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default UnaryOperator<DataGrainOperator>asUnaryOperator()Converts this lambda toUnaryOperator.DataGrainOperatorsurround(DataGrainOperator surroundedOperator)Surrounds operator.
-
-
-
Method Detail
-
asUnaryOperator
default UnaryOperator<DataGrainOperator> asUnaryOperator()
Converts this lambda toUnaryOperator.- Returns:
- The unary operator
-
surround
DataGrainOperator surround(DataGrainOperator surroundedOperator)
Surrounds operator.- Parameters:
surroundedOperator- The oprator to be surrounded- Returns:
- The final function
-
-