Example usage for org.apache.commons.el ComplexValue getExpressionString

List of usage examples for org.apache.commons.el ComplexValue getExpressionString

Introduction

In this page you can find the example usage for org.apache.commons.el ComplexValue getExpressionString.

Prototype

public String getExpressionString() 

Source Link

Document

Returns the expression in the expression language syntax

Usage

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

@Override
public void visitComplexValueExpression(ComplexValue complexValue) {
    append(w, complexValue.getExpressionString());
}