Example usage for org.apache.commons.el UnaryOperatorExpression getOperator

List of usage examples for org.apache.commons.el UnaryOperatorExpression getOperator

Introduction

In this page you can find the example usage for org.apache.commons.el UnaryOperatorExpression getOperator.

Prototype

public UnaryOperator getOperator() 

Source Link

Usage

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

@Override
public void visitUnaryOperator(UnaryOperatorExpression unaryOperatorExpression) {
    SymbolWriter.write(w, unaryOperatorExpression.getOperator().getOperatorSymbol());
}