Class PrefixedNotationExpressionEngine.OperatorFunction<T>
- java.lang.Object
-
- org.silverpeas.core.util.expression.PrefixedNotationExpressionEngine.OperatorFunction<T>
-
- Type Parameters:
T
- the concrete type of the argument the function accepts.
- Enclosing class:
- PrefixedNotationExpressionEngine<R>
public static class PrefixedNotationExpressionEngine.OperatorFunction<T> extends Object
Defines an operator behavior.
-
-
Constructor Summary
Constructors Constructor Description OperatorFunction(String operator, BiFunction<T,T,T> function)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BiFunction<T,T,T>
getFunction()
String
getOperator()
-
-
-
Constructor Detail
-
OperatorFunction
public OperatorFunction(String operator, BiFunction<T,T,T> function)
-
-
Method Detail
-
getOperator
public String getOperator()
-
getFunction
public BiFunction<T,T,T> getFunction()
-
-