Package org.springframework.pulsar.core
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 TypeMethodDescriptionresolveToString
(String expression) Resolve the given expression as a string value.
-
Method Details
-
resolveToString
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.
-