| Package | Description | 
|---|---|
| org.codehaus.plexus.interpolation.fixed | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | AbstractDelegatingValueSource | 
| class  | EnvarBasedValueSourceValueSourcewhich resolves expressions against the environment variables
 available from the underlying operating system (and possibly, the shell environment
 that created the present Java process). | 
| class  | FixedStringSearchInterpolatorA fixed string search interpolator is permanently bound to a given set of value sources,
 an is totally fixed and stateless over these value sources. | 
| class  | MapBasedValueSourceWraps a Map, and looks up the whole expression as a single key, returning the
 value mapped to it. | 
| class  | ObjectBasedValueSourceWraps an object, providing reflective access to the object graph of which the
 supplied object is the root. | 
| class  | PrefixedObjectValueSourceWraps an arbitrary object with an  ObjectBasedValueSourceinstance, then
 wraps that source with aPrefixedValueSourceWrapperinstance, to which
 this class delegates all of its calls. | 
| class  | PrefixedPropertiesValueSourceLegacy support. | 
| class  | PrefixedValueSourceWrapperFixedValueSourceimplementation 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. | 
| class  | PropertiesBasedValueSourceFixedValueSourceimplementation that wraps aPropertiesinstance,
 and does a simple lookup of the entire expression string as the parameter forProperties.getProperty(String), returning the result as the resolved
 value. | 
| Modifier and Type | Method and Description | 
|---|---|
| protected FixedValueSource | AbstractDelegatingValueSource. getDelegate() | 
| Modifier and Type | Method and Description | 
|---|---|
| static FixedStringSearchInterpolator | FixedStringSearchInterpolator. create(FixedValueSource... valueSources) | 
| static FixedStringSearchInterpolator | FixedStringSearchInterpolator. create(String startExpr,
      String endExpr,
      FixedValueSource... valueSources) | 
| static FixedStringSearchInterpolator | FixedStringSearchInterpolator. createWithPermittedNulls(FixedValueSource... valueSources) | 
| Constructor and Description | 
|---|
| AbstractDelegatingValueSource(FixedValueSource delegate) | 
| PrefixedValueSourceWrapper(FixedValueSource valueSource,
                          List<String> possiblePrefixes)Wrap the given value source, but first trim one of the given prefixes from any
 expressions before they are passed along for resolution. | 
| PrefixedValueSourceWrapper(FixedValueSource valueSource,
                          List<String> possiblePrefixes,
                          boolean allowUnprefixedExpressions)Wrap the given value source, but first trim one of the given prefixes from any
 expressions before they are passed along for resolution. | 
| PrefixedValueSourceWrapper(FixedValueSource valueSource,
                          String prefix)Wrap the given value source, but first trim the given prefix from any
 expressions before they are passed along for resolution. | 
| PrefixedValueSourceWrapper(FixedValueSource valueSource,
                          String prefix,
                          boolean allowUnprefixedExpressions)Wrap the given value source, but first trim the given prefix from any
 expressions before they are passed along for resolution. | 
Copyright © 2001–2016 Codehaus Plexus. All rights reserved.