Interface ExpressionParser

All Known Implementing Classes:
ParameterMacroExpressionParser

public interface ExpressionParser
An ExpressionParser parses a String representation of some calculation to produce an Expression, that of which when evaluated will return an expected type of value.
Since:
Coherence 12.1.2
Author:
bo 2011.10.18
  • Method Summary

    Modifier and Type
    Method
    Description
    <T> Expression<T>
    parse(String sExpression, Class<T> clzResultType)
    Attempts to parse the provided String to produce an Expression of an expected type.