Uses of Interface
org.codehaus.plexus.interpolation.BasicInterpolator
-
Packages that use BasicInterpolator Package Description org.codehaus.plexus.interpolation org.codehaus.plexus.interpolation.fixed org.codehaus.plexus.interpolation.multi org.codehaus.plexus.interpolation.object -
-
Uses of BasicInterpolator in org.codehaus.plexus.interpolation
Subinterfaces of BasicInterpolator in org.codehaus.plexus.interpolation Modifier and Type Interface Description interface
Interpolator
Interpolator interface.Classes in org.codehaus.plexus.interpolation that implement BasicInterpolator Modifier and Type Class Description class
RegexBasedInterpolator
Expansion of the original RegexBasedInterpolator, found in plexus-utils, this interpolator provides options for setting custom prefix/suffix regex parts, and includes aRecursionInterceptor
parameter in its interpolate(..) call, to allow the detection of cyclical expression references.class
StringSearchInterpolator
-
Uses of BasicInterpolator in org.codehaus.plexus.interpolation.fixed
Methods in org.codehaus.plexus.interpolation.fixed that return BasicInterpolator Modifier and Type Method Description BasicInterpolator
FixedStringSearchInterpolator. asBasicInterpolator()
-
Uses of BasicInterpolator in org.codehaus.plexus.interpolation.multi
Classes in org.codehaus.plexus.interpolation.multi that implement BasicInterpolator Modifier and Type Class Description class
MultiDelimiterStringSearchInterpolator
-
Uses of BasicInterpolator in org.codehaus.plexus.interpolation.object
Fields in org.codehaus.plexus.interpolation.object declared as BasicInterpolator Modifier and Type Field Description private BasicInterpolator
FieldBasedObjectInterpolator.InterpolateObjectAction. interpolator
Methods in org.codehaus.plexus.interpolation.object with parameters of type BasicInterpolator Modifier and Type Method Description void
FieldBasedObjectInterpolator. interpolate(java.lang.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(java.lang.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(java.lang.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(java.lang.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
.Constructors in org.codehaus.plexus.interpolation.object with parameters of type BasicInterpolator Constructor Description InterpolateObjectAction(java.lang.Object target, BasicInterpolator interpolator, RecursionInterceptor recursionInterceptor, java.util.Set blacklistedFieldNames, java.util.Set blacklistedPackagePrefixes, java.util.List<ObjectInterpolationWarning> warningCollector)
Setup an object graph traversal for the given target starting point.
-