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