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

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

Introduction

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

Prototype

public abstract 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 visitLiteralExpression(Literal literal) {
    append(w, literal.getExpressionString());
}