Package guru.mikelue.jdut.operation
Interface DataRowsOperator.SurroundOperator
-
- Enclosing interface:
- DataRowsOperator
public static interface DataRowsOperator.SurroundOperator
The operator for surrounding ofDataRowsOperator
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default UnaryOperator<DataRowsOperator>
asUnaryOperator()
Converts this operator otUnaryOperator
.DataRowsOperator
surround(DataRowsOperator surroundedOperator)
Surrounds operator.
-
-
-
Method Detail
-
asUnaryOperator
default UnaryOperator<DataRowsOperator> asUnaryOperator()
Converts this operator otUnaryOperator
.- Returns:
- The unary operator
-
surround
DataRowsOperator surround(DataRowsOperator surroundedOperator)
Surrounds operator.- Parameters:
surroundedOperator
- The oprator to be surrounded- Returns:
- The final function
-
-