Interface ExpressionResolver

All Known Implementing Classes:
DefaultExpressionResolver

public interface ExpressionResolver
Strategy interface for resolving a value from a string expression.
Since:
1.1.0
Author:
Jonas Geiregat
  • Method Summary

    Modifier and Type
    Method
    Description
    resolveToString(String expression)
    Resolve the given expression as a string value.
  • Method Details

    • resolveToString

      Resolved<String> resolveToString(String expression)
      Resolve the given expression as a string value.
      Parameters:
      expression - the expression to resolve
      Returns:
      a Resolved instance containing the resolved string value (can be null) or an exception if the resolution failed.