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

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

Introduction

In this page you can find the example usage for org.apache.commons.el UnaryOperator 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, UnaryOperator operator) {
    write(w, operator.getOperatorSymbol());
}