public interface ObjectInterpolator
Interpolator instance to resolve any String values in the
graph.| Modifier and Type | Method and Description |
|---|---|
List |
getWarnings()
Retrieve the
List of warnings (ObjectInterpolationWarning
instances) generated during the last interpolation execution. |
boolean |
hasWarnings()
Returns true if the last interpolation execution generated warnings.
|
void |
interpolate(Object target,
BasicInterpolator interpolator)
Traverse the object graph from the given starting point and interpolate
any Strings found in that graph using the given
Interpolator. |
void |
interpolate(Object target,
BasicInterpolator interpolator,
RecursionInterceptor recursionInterceptor)
Traverse the object graph from the given starting point and interpolate
any Strings found in that graph using the given
Interpolator. |
void interpolate(Object target, BasicInterpolator interpolator) throws InterpolationException
Interpolator.target - The starting point of the object graph to traverseinterpolator - The Interpolator used to resolve any Strings encountered during traversal.InterpolationExceptionvoid interpolate(Object target, BasicInterpolator interpolator, RecursionInterceptor recursionInterceptor) throws InterpolationException
Interpolator.target - The starting point of the object graph to traverseinterpolator - The Interpolator used to resolve any Strings encountered during traversal.recursionInterceptor - The RecursionInterceptor used to detect cyclical expressions in the graphInterpolationExceptionboolean hasWarnings()
List getWarnings()
List of warnings (ObjectInterpolationWarning
instances) generated during the last interpolation execution.Copyright © 2001–2016 Codehaus Plexus. All rights reserved.