Example usage for org.apache.commons.el BinaryOperator getOperatorSymbol

List of usage examples for org.apache.commons.el BinaryOperator getOperatorSymbol

Introduction

In this page you can find the example usage for org.apache.commons.el BinaryOperator getOperatorSymbol.

Prototype

public abstract String getOperatorSymbol();

Source Link

Document

Returns the symbol representing the operator

Usage

From source file:com.cybernostics.jsp2thymeleaf.api.expressions.function.SymbolWriter.java

public static void write(Writer w, BinaryOperator operator) {
    write(w, operator.getOperatorSymbol());
}

From source file:com.cybernostics.jsp2thymeleaf.api.expressions.ExpressionWritingVisitor.java

@Override
public void visitBinaryOperator(BinaryOperator binaryOperator) {
    SymbolWriter.write(w, binaryOperator.getOperatorSymbol());
}