Uses of Class
org.codehaus.plexus.interpolation.InterpolationException
Packages that use InterpolationException
Package
Description
-
Uses of InterpolationException in org.codehaus.plexus.interpolation
Subclasses of InterpolationException in org.codehaus.plexus.interpolationMethods in org.codehaus.plexus.interpolation that throw InterpolationExceptionModifier and TypeMethodDescriptionBasicInterpolator.interpolate
(String input) BasicInterpolator.interpolate
(String input, RecursionInterceptor recursionInterceptor) Interpolator.interpolate
(String input, String thisPrefixPattern) Interpolator.interpolate
(String input, String thisPrefixPattern, RecursionInterceptor recursionInterceptor) Attempt to resolve all expressions in the given input string, using the given pattern to first trim an optional prefix from each expression.RegexBasedInterpolator.interpolate
(String input) RegexBasedInterpolator.interpolate
(String input, String thisPrefixPattern) RegexBasedInterpolator.interpolate
(String input, String thisPrefixPattern, RecursionInterceptor recursionInterceptor) Attempt to resolve all expressions in the given input string, using the given pattern to first trim an optional prefix from each expression.RegexBasedInterpolator.interpolate
(String input, RecursionInterceptor recursionInterceptor) private String
RegexBasedInterpolator.interpolate
(String input, RecursionInterceptor recursionInterceptor, Pattern expressionPattern, int realExprGroup) Entry point for recursive resolution of an expression and all of its nested expressions.StringSearchInterpolator.interpolate
(String input) StringSearchInterpolator.interpolate
(String input, String thisPrefixPattern) StringSearchInterpolator.interpolate
(String input, String thisPrefixPattern, RecursionInterceptor recursionInterceptor) StringSearchInterpolator.interpolate
(String input, RecursionInterceptor recursionInterceptor) Entry point for recursive resolution of an expression and all of its nested expressions.private String
StringSearchInterpolator.interpolate
(String input, RecursionInterceptor recursionInterceptor, Set<String> unresolvable) -
Uses of InterpolationException in org.codehaus.plexus.interpolation.multi
Methods in org.codehaus.plexus.interpolation.multi that throw InterpolationExceptionModifier and TypeMethodDescriptionMultiDelimiterStringSearchInterpolator.interpolate
(String input) MultiDelimiterStringSearchInterpolator.interpolate
(String input, String thisPrefixPattern) MultiDelimiterStringSearchInterpolator.interpolate
(String input, String thisPrefixPattern, RecursionInterceptor recursionInterceptor) MultiDelimiterStringSearchInterpolator.interpolate
(String input, RecursionInterceptor recursionInterceptor) Entry point for recursive resolution of an expression and all of its nested expressions.private String
MultiDelimiterStringSearchInterpolator.interpolate
(String input, RecursionInterceptor recursionInterceptor, Set<String> unresolvable) -
Uses of InterpolationException in org.codehaus.plexus.interpolation.object
Methods in org.codehaus.plexus.interpolation.object that throw InterpolationExceptionModifier and TypeMethodDescriptionprivate void
FieldBasedObjectInterpolator.InterpolateObjectAction.evaluateArray
(Object target, String basePath) Traverse the elements of an array, and interpolate any qualified objects or add them to the traversal queue.void
FieldBasedObjectInterpolator.interpolate
(Object target, BasicInterpolator interpolator) Using reflective field access and mutation, traverse the object graph from the given starting point and interpolate any Strings found in that graph using the givenInterpolator
.void
FieldBasedObjectInterpolator.interpolate
(Object target, BasicInterpolator interpolator, RecursionInterceptor recursionInterceptor) Using reflective field access and mutation, traverse the object graph from the given starting point and interpolate any Strings found in that graph using the givenInterpolator
.void
ObjectInterpolator.interpolate
(Object target, BasicInterpolator interpolator) Traverse the object graph from the given starting point and interpolate any Strings found in that graph using the givenInterpolator
.void
ObjectInterpolator.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 givenInterpolator
.private boolean
FieldBasedObjectInterpolator.InterpolateObjectAction.interpolateCollection
(Object obj, String basePath, Field field) private void
FieldBasedObjectInterpolator.InterpolateObjectAction.interpolateMap
(Object obj, String basePath, Field field) private void
FieldBasedObjectInterpolator.InterpolateObjectAction.interpolateObject
(Object obj, String basePath, Field field) private void
FieldBasedObjectInterpolator.InterpolateObjectAction.interpolateString
(Object obj, Field field) private void
FieldBasedObjectInterpolator.InterpolateObjectAction.traverseObjectWithParents
(Class cls, FieldBasedObjectInterpolator.InterpolationTarget target) Traverse the given object, interpolating any String fields and adding non-primitive field values to the interpolation queue for later processing.