Index

A B C D E F G H I M O P Q R S V 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form

A

AbstractDelegatingValueSource - Class in org.codehaus.plexus.interpolation
 
AbstractDelegatingValueSource(ValueSource) - Constructor for class org.codehaus.plexus.interpolation.AbstractDelegatingValueSource
 
AbstractFunctionValueSourceWrapper - Class in org.codehaus.plexus.interpolation
ValueSource abstract implementation that wraps another value source.
AbstractFunctionValueSourceWrapper(ValueSource) - Constructor for class org.codehaus.plexus.interpolation.AbstractFunctionValueSourceWrapper
Construct a new function value source instance, using the supplied ValueSource to retrieve the input values for the function(s) this class implements.
AbstractValueSource - Class in org.codehaus.plexus.interpolation
 
AbstractValueSource(boolean) - Constructor for class org.codehaus.plexus.interpolation.AbstractValueSource
 
addFeedback(String) - Method in class org.codehaus.plexus.interpolation.AbstractValueSource
 
addFeedback(String, Throwable) - Method in class org.codehaus.plexus.interpolation.AbstractValueSource
 
addPostProcessor(InterpolationPostProcessor) - Method in interface org.codehaus.plexus.interpolation.Interpolator
Add a new post-processor to handle final processing after recursively-interpolated value is determined.
addPostProcessor(InterpolationPostProcessor) - Method in class org.codehaus.plexus.interpolation.RegexBasedInterpolator
Add a new post-processor to handle final processing after recursively-interpolated value is determined.
addPostProcessor(InterpolationPostProcessor) - Method in class org.codehaus.plexus.interpolation.StringSearchInterpolator
Add a new post-processor to handle final processing after recursively-interpolated value is determined.
addValueSource(ValueSource) - Method in interface org.codehaus.plexus.interpolation.Interpolator
Add a new ValueSource to the stack used to resolve expressions in this interpolator instance.
addValueSource(ValueSource) - Method in class org.codehaus.plexus.interpolation.RegexBasedInterpolator
Add a new ValueSource to the stack used to resolve expressions in this interpolator instance.
addValueSource(ValueSource) - Method in class org.codehaus.plexus.interpolation.StringSearchInterpolator
Add a new ValueSource to the stack used to resolve expressions in this interpolator instance.

B

BasicInterpolator - Interface in org.codehaus.plexus.interpolation
Knows how to do basic interpolation services.

C

clear() - Method in class org.codehaus.plexus.interpolation.PrefixAwareRecursionInterceptor
 
clear() - Method in interface org.codehaus.plexus.interpolation.RecursionInterceptor
Reset the interceptor
clear() - Method in class org.codehaus.plexus.interpolation.SimpleRecursionInterceptor
 
clearAnswers() - Method in interface org.codehaus.plexus.interpolation.Interpolator
 
clearAnswers() - Method in class org.codehaus.plexus.interpolation.RegexBasedInterpolator
 
clearAnswers() - Method in class org.codehaus.plexus.interpolation.StringSearchInterpolator
 
clearFeedback() - Method in class org.codehaus.plexus.interpolation.AbstractDelegatingValueSource
 
clearFeedback() - Method in class org.codehaus.plexus.interpolation.AbstractValueSource
 
clearFeedback() - Method in class org.codehaus.plexus.interpolation.FixedInterpolatorValueSource
 
clearFeedback() - Method in interface org.codehaus.plexus.interpolation.Interpolator
Clear the feedback messages from previous interpolate(..) calls.
clearFeedback() - Method in class org.codehaus.plexus.interpolation.PrefixedValueSourceWrapper
If the nested ValueSource implements FeedbackEnabledValueSource, then clear that source's feedback list.
clearFeedback() - Method in class org.codehaus.plexus.interpolation.RegexBasedInterpolator
Clear the feedback messages from previous interpolate(..) calls.
clearFeedback() - Method in class org.codehaus.plexus.interpolation.SingleResponseValueSource
 
clearFeedback() - Method in class org.codehaus.plexus.interpolation.StringSearchInterpolator
Clear the feedback messages from previous interpolate(..) calls.
clearFeedback() - Method in interface org.codehaus.plexus.interpolation.ValueSource
Clear the feedback accumulated by a prior interpolation run.

D

DEFAULT_BEGIN_TOKEN - Static variable in class org.codehaus.plexus.interpolation.InterpolatorFilterReader
Default begin token.
DEFAULT_END_EXPR - Static variable in class org.codehaus.plexus.interpolation.StringSearchInterpolator
 
DEFAULT_END_TOKEN - Static variable in class org.codehaus.plexus.interpolation.InterpolatorFilterReader
Default end token.
DEFAULT_END_TOKEN - Static variable in class org.codehaus.plexus.interpolation.PrefixAwareRecursionInterceptor
 
DEFAULT_REGEXP - Static variable in class org.codehaus.plexus.interpolation.RegexBasedInterpolator
 
DEFAULT_START_EXPR - Static variable in class org.codehaus.plexus.interpolation.StringSearchInterpolator
 
DEFAULT_START_TOKEN - Static variable in class org.codehaus.plexus.interpolation.PrefixAwareRecursionInterceptor
 

E

EnvarBasedValueSource - Class in org.codehaus.plexus.interpolation
ValueSource which resolves expressions against the environment variables available from the underlying operating system (and possibly, the shell environment that created the present Java process).
EnvarBasedValueSource() - Constructor for class org.codehaus.plexus.interpolation.EnvarBasedValueSource
Create a new value source for interpolation based on shell environment variables.
EnvarBasedValueSource(boolean) - Constructor for class org.codehaus.plexus.interpolation.EnvarBasedValueSource
Create a new value source for interpolation based on shell environment variables.
execute(String, Object) - Method in interface org.codehaus.plexus.interpolation.InterpolationPostProcessor
Given the starting expression and the fully-recursively-interpolated value, perform some post-processing step and return the resulting [possibly different] value, or null if no change was made..
executeFunction(String, Object) - Method in class org.codehaus.plexus.interpolation.AbstractFunctionValueSourceWrapper
Execute the function referenced in the last-processed expression using the value resolved from the current expression (using the embedded ValueSource).
expressionResolutionFinished(String) - Method in class org.codehaus.plexus.interpolation.PrefixAwareRecursionInterceptor
 
expressionResolutionFinished(String) - Method in interface org.codehaus.plexus.interpolation.RecursionInterceptor
Signal to the interceptor that the all efforts to resolve the given expression have completed - whether successfully or not is irrelevant - and that the expression should not be tracked for recursion any longer.
expressionResolutionFinished(String) - Method in class org.codehaus.plexus.interpolation.SimpleRecursionInterceptor
Signal to the interceptor that the all efforts to resolve the given expression have completed - whether successfully or not is irrelevant - and that the expression should not be tracked for recursion any longer.
expressionResolutionStarted(String) - Method in class org.codehaus.plexus.interpolation.PrefixAwareRecursionInterceptor
 
expressionResolutionStarted(String) - Method in interface org.codehaus.plexus.interpolation.RecursionInterceptor
Log the intention to start resolving the given expression.
expressionResolutionStarted(String) - Method in class org.codehaus.plexus.interpolation.SimpleRecursionInterceptor
Log the intention to start resolving the given expression.

F

FeedbackEnabledValueSource - Interface in org.codehaus.plexus.interpolation
Deprecated.
Rolled into ValueSource now.
FeedbackingValueSource - Class in org.codehaus.plexus.interpolation
Adds feedback on any getValue(String) call.
FeedbackingValueSource() - Constructor for class org.codehaus.plexus.interpolation.FeedbackingValueSource
 
FeedbackingValueSource(String) - Constructor for class org.codehaus.plexus.interpolation.FeedbackingValueSource
 
FixedInterpolatorValueSource - Class in org.codehaus.plexus.interpolation
A value source that allows a fixed interpolator to be injected into a regular interpolator.
FixedInterpolatorValueSource(FixedStringSearchInterpolator) - Constructor for class org.codehaus.plexus.interpolation.FixedInterpolatorValueSource
 

G

getDelegate() - Method in class org.codehaus.plexus.interpolation.AbstractDelegatingValueSource
 
getEscapeString() - Method in class org.codehaus.plexus.interpolation.InterpolatorFilterReader
 
getEscapeString() - Method in class org.codehaus.plexus.interpolation.StringSearchInterpolator
 
getExistingAnswer(String) - Method in class org.codehaus.plexus.interpolation.StringSearchInterpolator
For testing purposes only.
getExpression() - Method in exception class org.codehaus.plexus.interpolation.InterpolationException
 
getExpressionCycle(String) - Method in class org.codehaus.plexus.interpolation.PrefixAwareRecursionInterceptor
When an expression is determined to be a recursive reference, this method returns the sublist of tracked expressions that participate in this cycle.
getExpressionCycle(String) - Method in interface org.codehaus.plexus.interpolation.RecursionInterceptor
 
getExpressionCycle(String) - Method in class org.codehaus.plexus.interpolation.SimpleRecursionInterceptor
When an expression is determined to be a recursive reference, this method returns the sublist of tracked expressions that participate in this cycle.
getFeedback() - Method in class org.codehaus.plexus.interpolation.AbstractDelegatingValueSource
 
getFeedback() - Method in class org.codehaus.plexus.interpolation.AbstractValueSource
 
getFeedback() - Method in class org.codehaus.plexus.interpolation.FixedInterpolatorValueSource
 
getFeedback() - Method in interface org.codehaus.plexus.interpolation.Interpolator
Return any feedback messages and errors that were generated - but suppressed - during the interpolation process.
getFeedback() - Method in class org.codehaus.plexus.interpolation.PrefixedValueSourceWrapper
If the nested ValueSource implements FeedbackEnabledValueSource, then return that source's feedback list.
getFeedback() - Method in class org.codehaus.plexus.interpolation.RegexBasedInterpolator
Return any feedback messages and errors that were generated - but suppressed - during the interpolation process.
getFeedback() - Method in class org.codehaus.plexus.interpolation.SingleResponseValueSource
 
getFeedback() - Method in class org.codehaus.plexus.interpolation.StringSearchInterpolator
Return any feedback messages and errors that were generated - but suppressed - during the interpolation process.
getFeedback() - Method in interface org.codehaus.plexus.interpolation.ValueSource
Return the feedback about resolution failures for a particular expression.
getLastExpression() - Method in class org.codehaus.plexus.interpolation.PrefixedObjectValueSource
getLastExpression() - Method in class org.codehaus.plexus.interpolation.PrefixedPropertiesValueSource
getLastExpression() - Method in class org.codehaus.plexus.interpolation.PrefixedValueSourceWrapper
If the nested ValueSource implements QueryEnabledValueSource, then return that source's last expression.
getLastExpression() - Method in interface org.codehaus.plexus.interpolation.QueryEnabledValueSource
 
getRecursionInterceptor() - Method in class org.codehaus.plexus.interpolation.InterpolatorFilterReader
 
getValue(String) - Method in class org.codehaus.plexus.interpolation.AbstractDelegatingValueSource
 
getValue(String) - Method in class org.codehaus.plexus.interpolation.AbstractFunctionValueSourceWrapper
Resolve the current expression using the embedded ValueSource Retrieve the last expression processed by this value source Pass the last expression (which should be the function name), along with the value for the current expression, into the executeFunction(..) method Return the result of the executeFunction(..) as the resolved value for the current expression.
getValue(String) - Method in class org.codehaus.plexus.interpolation.EnvarBasedValueSource
If the expression starts with 'env.' then trim this prefix.
getValue(String) - Method in class org.codehaus.plexus.interpolation.FeedbackingValueSource
 
getValue(String) - Method in class org.codehaus.plexus.interpolation.FixedInterpolatorValueSource
 
getValue(String) - Method in class org.codehaus.plexus.interpolation.MapBasedValueSource
Lookup the supplied expression as a key in the wrapped Map, and return its value.
getValue(String) - Method in class org.codehaus.plexus.interpolation.ObjectBasedValueSource
Split the expression into parts, tokenized on the dot ('.') character.
getValue(String) - Method in class org.codehaus.plexus.interpolation.PrefixedValueSourceWrapper
Uses ValueSourceUtils.trimPrefix(String, java.util.Collection, boolean) to get the trimmed expression.
getValue(String) - Method in class org.codehaus.plexus.interpolation.PropertiesBasedValueSource
 
getValue(String) - Method in class org.codehaus.plexus.interpolation.SingleResponseValueSource
 
getValue(String) - Method in interface org.codehaus.plexus.interpolation.ValueSource
 
getValue(String, String, String) - Method in class org.codehaus.plexus.interpolation.AbstractDelegatingValueSource
 
getValue(String, String, String) - Method in interface org.codehaus.plexus.interpolation.ValueSource
Returns a value resolved from an expression.
getValueSource() - Method in class org.codehaus.plexus.interpolation.AbstractFunctionValueSourceWrapper
Retrieve the embedded value source.

H

hasRecursiveExpression(String) - Method in class org.codehaus.plexus.interpolation.PrefixAwareRecursionInterceptor
 
hasRecursiveExpression(String) - Method in interface org.codehaus.plexus.interpolation.RecursionInterceptor
Check whether the given value contains an expression that is currently being tracked by this interceptor.
hasRecursiveExpression(String) - Method in class org.codehaus.plexus.interpolation.SimpleRecursionInterceptor
Check whether the current expression is already present in the in-process stack.

I

interpolate(String) - Method in interface org.codehaus.plexus.interpolation.BasicInterpolator
interpolate(String) - Method in class org.codehaus.plexus.interpolation.RegexBasedInterpolator
interpolate(String) - Method in class org.codehaus.plexus.interpolation.StringSearchInterpolator
 
interpolate(String, String) - Method in interface org.codehaus.plexus.interpolation.Interpolator
interpolate(String, String) - Method in class org.codehaus.plexus.interpolation.RegexBasedInterpolator
interpolate(String, String) - Method in class org.codehaus.plexus.interpolation.StringSearchInterpolator
 
interpolate(String, String, RecursionInterceptor) - Method in interface org.codehaus.plexus.interpolation.Interpolator
Attempt to resolve all expressions in the given input string, using the given pattern to first trim an optional prefix from each expression.
interpolate(String, String, RecursionInterceptor) - Method in class org.codehaus.plexus.interpolation.RegexBasedInterpolator
Attempt to resolve all expressions in the given input string, using the given pattern to first trim an optional prefix from each expression.
interpolate(String, String, RecursionInterceptor) - Method in class org.codehaus.plexus.interpolation.StringSearchInterpolator
 
interpolate(String, RecursionInterceptor) - Method in interface org.codehaus.plexus.interpolation.BasicInterpolator
interpolate(String, RecursionInterceptor) - Method in class org.codehaus.plexus.interpolation.RegexBasedInterpolator
interpolate(String, RecursionInterceptor) - Method in class org.codehaus.plexus.interpolation.StringSearchInterpolator
Entry point for recursive resolution of an expression and all of its nested expressions.
InterpolationCycleException - Exception Class in org.codehaus.plexus.interpolation
 
InterpolationCycleException(RecursionInterceptor, String, String) - Constructor for exception class org.codehaus.plexus.interpolation.InterpolationCycleException
 
InterpolationException - Exception Class in org.codehaus.plexus.interpolation
Signals an unrecoverable error in the process of interpolating a string, such as the detection of an expression cycle.
InterpolationException(String, String) - Constructor for exception class org.codehaus.plexus.interpolation.InterpolationException
 
InterpolationException(String, String, Throwable) - Constructor for exception class org.codehaus.plexus.interpolation.InterpolationException
 
InterpolationPostProcessor - Interface in org.codehaus.plexus.interpolation
Used to allow full recursion of value interpolation before applying some rule to the result.
Interpolator - Interface in org.codehaus.plexus.interpolation
Interpolator interface.
InterpolatorFilterReader - Class in org.codehaus.plexus.interpolation
A FilterReader implementation, that works with Interpolator interface instead of it's own interpolation implementation.
InterpolatorFilterReader(Reader, Interpolator) - Constructor for class org.codehaus.plexus.interpolation.InterpolatorFilterReader
this constructor use default begin token ${ and default end token }
InterpolatorFilterReader(Reader, Interpolator, String, String) - Constructor for class org.codehaus.plexus.interpolation.InterpolatorFilterReader
 
InterpolatorFilterReader(Reader, Interpolator, String, String, RecursionInterceptor) - Constructor for class org.codehaus.plexus.interpolation.InterpolatorFilterReader
 
InterpolatorFilterReader(Reader, Interpolator, RecursionInterceptor) - Constructor for class org.codehaus.plexus.interpolation.InterpolatorFilterReader
this constructor use default begin token ${ and default end token }
isCacheAnswers() - Method in interface org.codehaus.plexus.interpolation.Interpolator
 
isCacheAnswers() - Method in class org.codehaus.plexus.interpolation.RegexBasedInterpolator
 
isCacheAnswers() - Method in class org.codehaus.plexus.interpolation.StringSearchInterpolator
 
isInterpolateWithPrefixPattern() - Method in class org.codehaus.plexus.interpolation.InterpolatorFilterReader
 
isPreserveEscapeString() - Method in class org.codehaus.plexus.interpolation.InterpolatorFilterReader
 
isReusePatterns() - Method in class org.codehaus.plexus.interpolation.RegexBasedInterpolator
 

M

MapBasedValueSource - Class in org.codehaus.plexus.interpolation
Wraps a Map, and looks up the whole expression as a single key, returning the value mapped to it.
MapBasedValueSource(Map) - Constructor for class org.codehaus.plexus.interpolation.MapBasedValueSource
Construct a new value source to wrap the supplied map.

O

ObjectBasedValueSource - Class in org.codehaus.plexus.interpolation
Wraps an object, providing reflective access to the object graph of which the supplied object is the root.
ObjectBasedValueSource(Object) - Constructor for class org.codehaus.plexus.interpolation.ObjectBasedValueSource
Construct a new value source, using the supplied object as the root from which to start, and using expressions split at the dot ('.') to navigate the object graph beneath this root.
org.codehaus.plexus.interpolation - package org.codehaus.plexus.interpolation
 

P

PrefixAwareRecursionInterceptor - Class in org.codehaus.plexus.interpolation
RecursionInterceptor implementation that provides support for expressions with multiple synonyms, such as project.build.directory == pom.build.directory == build.directory in Maven's POM.
PrefixAwareRecursionInterceptor(Collection) - Constructor for class org.codehaus.plexus.interpolation.PrefixAwareRecursionInterceptor
Use the specified expression prefixes to detect synonyms.
PrefixAwareRecursionInterceptor(Collection, boolean) - Constructor for class org.codehaus.plexus.interpolation.PrefixAwareRecursionInterceptor
Use the specified expression prefixes to detect synonyms, and specify whether unprefixed expressions can be considered synonyms.
PrefixedObjectValueSource - Class in org.codehaus.plexus.interpolation
Wraps an arbitrary object with an ObjectBasedValueSource instance, then wraps that source with a PrefixedValueSourceWrapper instance, to which this class delegates all of its calls.
PrefixedObjectValueSource(String, Object) - Constructor for class org.codehaus.plexus.interpolation.PrefixedObjectValueSource
Wrap the specified root object, allowing the specified expression prefix.
PrefixedObjectValueSource(List, Object, boolean) - Constructor for class org.codehaus.plexus.interpolation.PrefixedObjectValueSource
Wrap the specified root object, allowing the specified list of expression prefixes and setting whether the PrefixedValueSourceWrapper allows unprefixed expressions.
PrefixedPropertiesValueSource - Class in org.codehaus.plexus.interpolation
Legacy support.
PrefixedPropertiesValueSource(String, Properties) - Constructor for class org.codehaus.plexus.interpolation.PrefixedPropertiesValueSource
Wrap the specified properties file with a new PropertiesBasedValueSource, then wrap that source with a new PrefixedValueSourceWrapper that uses the specified expression prefix.
PrefixedPropertiesValueSource(List, Properties, boolean) - Constructor for class org.codehaus.plexus.interpolation.PrefixedPropertiesValueSource
Wrap the specified properties file with a new PropertiesBasedValueSource, then wrap that source with a new PrefixedValueSourceWrapper that uses the specified expression-prefix list.
PrefixedValueSourceWrapper - Class in org.codehaus.plexus.interpolation
ValueSource implementation which simply wraps another value source, and trims any of a set of possible expression prefixes before delegating the modified expression to be resolved by the real value source.
PrefixedValueSourceWrapper(ValueSource, String) - Constructor for class org.codehaus.plexus.interpolation.PrefixedValueSourceWrapper
Wrap the given value source, but first trim the given prefix from any expressions before they are passed along for resolution.
PrefixedValueSourceWrapper(ValueSource, String, boolean) - Constructor for class org.codehaus.plexus.interpolation.PrefixedValueSourceWrapper
Wrap the given value source, but first trim the given prefix from any expressions before they are passed along for resolution.
PrefixedValueSourceWrapper(ValueSource, List) - Constructor for class org.codehaus.plexus.interpolation.PrefixedValueSourceWrapper
Wrap the given value source, but first trim one of the given prefixes from any expressions before they are passed along for resolution.
PrefixedValueSourceWrapper(ValueSource, List, boolean) - Constructor for class org.codehaus.plexus.interpolation.PrefixedValueSourceWrapper
Wrap the given value source, but first trim one of the given prefixes from any expressions before they are passed along for resolution.
PropertiesBasedValueSource - Class in org.codehaus.plexus.interpolation
ValueSource implementation that wraps a Properties instance, and does a simple lookup of the entire expression string as the parameter for Properties.getProperty(String), returning the result as the resolved value.
PropertiesBasedValueSource(Properties) - Constructor for class org.codehaus.plexus.interpolation.PropertiesBasedValueSource
Wrap the specified Properties object for use as a value source.

Q

QueryEnabledValueSource - Interface in org.codehaus.plexus.interpolation
Tracks the most recent expression processed by this value source implementation.

R

read() - Method in class org.codehaus.plexus.interpolation.InterpolatorFilterReader
Returns the next character in the filtered stream, replacing tokens from the original stream.
read(char[], int, int) - Method in class org.codehaus.plexus.interpolation.InterpolatorFilterReader
Reads characters into a portion of an array.
RecursionInterceptor - Interface in org.codehaus.plexus.interpolation
Logs expressions before resolution is attempted, and clears them after resolution is complete (or, fails all strategies).
RegexBasedInterpolator - Class in org.codehaus.plexus.interpolation
Expansion of the original RegexBasedInterpolator, found in plexus-utils, this interpolator provides options for setting custom prefix/suffix regex parts, and includes a RecursionInterceptor parameter in its interpolate(..) call, to allow the detection of cyclical expression references.
RegexBasedInterpolator() - Constructor for class org.codehaus.plexus.interpolation.RegexBasedInterpolator
Setup a basic interpolator.
RegexBasedInterpolator(boolean) - Constructor for class org.codehaus.plexus.interpolation.RegexBasedInterpolator
 
RegexBasedInterpolator(String, String) - Constructor for class org.codehaus.plexus.interpolation.RegexBasedInterpolator
Setup an interpolator with no value sources, and the specified regex pattern prefix and suffix in place of the default one.
RegexBasedInterpolator(String, String, List) - Constructor for class org.codehaus.plexus.interpolation.RegexBasedInterpolator
Setup an interpolator with the specified value sources, and the specified regex pattern prefix and suffix in place of the default one.
RegexBasedInterpolator(List) - Constructor for class org.codehaus.plexus.interpolation.RegexBasedInterpolator
Setup a basic interpolator with the specified list of value sources.
removePostProcessor(InterpolationPostProcessor) - Method in interface org.codehaus.plexus.interpolation.Interpolator
Remove the given post-processor.
removePostProcessor(InterpolationPostProcessor) - Method in class org.codehaus.plexus.interpolation.RegexBasedInterpolator
Remove the given post-processor.
removePostProcessor(InterpolationPostProcessor) - Method in class org.codehaus.plexus.interpolation.StringSearchInterpolator
Remove the given post-processor.
removeValuesSource(ValueSource) - Method in interface org.codehaus.plexus.interpolation.Interpolator
Remove the specified ValueSource from the stack used to resolve expressions in this interpolator instance.
removeValuesSource(ValueSource) - Method in class org.codehaus.plexus.interpolation.RegexBasedInterpolator
Remove the specified ValueSource from the stack used to resolve expressions in this interpolator instance.
removeValuesSource(ValueSource) - Method in class org.codehaus.plexus.interpolation.StringSearchInterpolator
Remove the specified ValueSource from the stack used to resolve expressions in this interpolator instance.

S

setCacheAnswers(boolean) - Method in interface org.codehaus.plexus.interpolation.Interpolator
 
setCacheAnswers(boolean) - Method in class org.codehaus.plexus.interpolation.RegexBasedInterpolator
 
setCacheAnswers(boolean) - Method in class org.codehaus.plexus.interpolation.StringSearchInterpolator
 
setEscapeString(String) - Method in class org.codehaus.plexus.interpolation.InterpolatorFilterReader
 
setEscapeString(String) - Method in class org.codehaus.plexus.interpolation.StringSearchInterpolator
 
setInterpolateWithPrefixPattern(boolean) - Method in class org.codehaus.plexus.interpolation.InterpolatorFilterReader
 
setPreserveEscapeString(boolean) - Method in class org.codehaus.plexus.interpolation.InterpolatorFilterReader
 
setRecursionInterceptor(RecursionInterceptor) - Method in class org.codehaus.plexus.interpolation.InterpolatorFilterReader
 
setReusePatterns(boolean) - Method in class org.codehaus.plexus.interpolation.RegexBasedInterpolator
 
SimpleRecursionInterceptor - Class in org.codehaus.plexus.interpolation
Simplest implementation of a RecursionInterceptor, which checks whether the existing interpolation effort is already attempting to resolve an exact expression, but has not finished.
SimpleRecursionInterceptor() - Constructor for class org.codehaus.plexus.interpolation.SimpleRecursionInterceptor
 
SingleResponseValueSource - Class in org.codehaus.plexus.interpolation
If the expression matches, simply return the response object.
SingleResponseValueSource(String, Object) - Constructor for class org.codehaus.plexus.interpolation.SingleResponseValueSource
 
skip(long) - Method in class org.codehaus.plexus.interpolation.InterpolatorFilterReader
Skips characters.
StringSearchInterpolator - Class in org.codehaus.plexus.interpolation
 
StringSearchInterpolator() - Constructor for class org.codehaus.plexus.interpolation.StringSearchInterpolator
 
StringSearchInterpolator(String, String) - Constructor for class org.codehaus.plexus.interpolation.StringSearchInterpolator
 

V

ValueSource - Interface in org.codehaus.plexus.interpolation
Supplies one strategy for resolving a value for an interpolation expression.
A B C D E F G H I M O P Q R S V 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form