Uses of Interface
org.codehaus.plexus.interpolation.fixed.FixedValueSource
-
Packages that use FixedValueSource Package Description org.codehaus.plexus.interpolation.fixed -
-
Uses of FixedValueSource in org.codehaus.plexus.interpolation.fixed
Classes in org.codehaus.plexus.interpolation.fixed that implement FixedValueSource Modifier and Type Class Description classAbstractDelegatingValueSourceclassEnvarBasedValueSourceValueSourcewhich resolves expressions against the environment variables available from the underlying operating system (and possibly, the shell environment that created the present Java process).classFixedStringSearchInterpolatorA fixed string search interpolator is permanently bound to a given set of value sources, an is totally fixed and stateless over these value sources.classMapBasedValueSourceWraps a Map, and looks up the whole expression as a single key, returning the value mapped to it.classObjectBasedValueSourceWraps an object, providing reflective access to the object graph of which the supplied object is the root.classPrefixedObjectValueSourceWraps an arbitrary object with anObjectBasedValueSourceinstance, then wraps that source with aPrefixedValueSourceWrapperinstance, to which this class delegates all of its calls.classPrefixedPropertiesValueSourceLegacy support.classPrefixedValueSourceWrapperFixedValueSourceimplementation 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.classPropertiesBasedValueSourceFixedValueSourceimplementation 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.Fields in org.codehaus.plexus.interpolation.fixed declared as FixedValueSource Modifier and Type Field Description private FixedValueSourceAbstractDelegatingValueSource. delegateprivate FixedValueSourcePrefixedValueSourceWrapper. valueSourceprivate FixedValueSource[]FixedStringSearchInterpolator. valueSourcesMethods in org.codehaus.plexus.interpolation.fixed that return FixedValueSource Modifier and Type Method Description protected FixedValueSourceAbstractDelegatingValueSource. getDelegate()Methods in org.codehaus.plexus.interpolation.fixed with parameters of type FixedValueSource Modifier and Type Method Description static FixedStringSearchInterpolatorFixedStringSearchInterpolator. create(java.lang.String startExpr, java.lang.String endExpr, FixedValueSource... valueSources)static FixedStringSearchInterpolatorFixedStringSearchInterpolator. create(FixedValueSource... valueSources)static FixedStringSearchInterpolatorFixedStringSearchInterpolator. createWithPermittedNulls(FixedValueSource... valueSources)Constructors in org.codehaus.plexus.interpolation.fixed with parameters of type FixedValueSource Constructor Description AbstractDelegatingValueSource(FixedValueSource delegate)FixedStringSearchInterpolator(java.lang.String startExpr, java.lang.String endExpr, java.lang.String escapeString, InterpolationPostProcessor postProcessor, FixedValueSource... valueSources)PrefixedValueSourceWrapper(FixedValueSource valueSource, java.lang.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, java.lang.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.PrefixedValueSourceWrapper(FixedValueSource valueSource, java.util.List<java.lang.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, java.util.List<java.lang.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.
-