Uses of Interface
org.codehaus.plexus.interpolation.ValueSource
-
Packages that use ValueSource Package Description org.codehaus.plexus.interpolation org.codehaus.plexus.interpolation.multi -
-
Uses of ValueSource in org.codehaus.plexus.interpolation
Subinterfaces of ValueSource in org.codehaus.plexus.interpolation Modifier and Type Interface Description interfaceFeedbackEnabledValueSourceDeprecated.Rolled intoValueSourcenow.interfaceQueryEnabledValueSourceTracks the most recent expression processed by this value source implementation.Classes in org.codehaus.plexus.interpolation that implement ValueSource Modifier and Type Class Description classAbstractDelegatingValueSourceclassAbstractFunctionValueSourceWrapperValueSourceabstract implementation that wraps another value source.classAbstractValueSourceclassEnvarBasedValueSourceValueSourcewhich resolves expressions against the environment variables available from the underlying operating system (and possibly, the shell environment that created the present Java process).classFixedInterpolatorValueSourceA value source that allows a fixed interpolator to be injected into a regular interpolator.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.classPrefixedValueSourceWrapperValueSourceimplementation 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.classPropertiesBasedValueSourceValueSourceimplementation 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.classSingleResponseValueSourceIf the expression matches, simply return the response object.Fields in org.codehaus.plexus.interpolation declared as ValueSource Modifier and Type Field Description private ValueSourceAbstractDelegatingValueSource. delegateprivate ValueSourceAbstractFunctionValueSourceWrapper. valueSourceprivate ValueSourcePrefixedValueSourceWrapper. valueSourceFields in org.codehaus.plexus.interpolation with type parameters of type ValueSource Modifier and Type Field Description private java.util.List<ValueSource>RegexBasedInterpolator. valueSourcesprivate java.util.List<ValueSource>StringSearchInterpolator. valueSourcesMethods in org.codehaus.plexus.interpolation that return ValueSource Modifier and Type Method Description protected ValueSourceAbstractDelegatingValueSource. getDelegate()protected ValueSourceAbstractFunctionValueSourceWrapper. getValueSource()Retrieve the embedded value source.Methods in org.codehaus.plexus.interpolation with parameters of type ValueSource Modifier and Type Method Description voidInterpolator. addValueSource(ValueSource valueSource)Add a newValueSourceto the stack used to resolve expressions in this interpolator instance.voidRegexBasedInterpolator. addValueSource(ValueSource valueSource)Add a newValueSourceto the stack used to resolve expressions in this interpolator instance.voidStringSearchInterpolator. addValueSource(ValueSource valueSource)Add a newValueSourceto the stack used to resolve expressions in this interpolator instance.voidInterpolator. removeValuesSource(ValueSource valueSource)Remove the specifiedValueSourcefrom the stack used to resolve expressions in this interpolator instance.voidRegexBasedInterpolator. removeValuesSource(ValueSource valueSource)Remove the specifiedValueSourcefrom the stack used to resolve expressions in this interpolator instance.voidStringSearchInterpolator. removeValuesSource(ValueSource valueSource)Remove the specifiedValueSourcefrom the stack used to resolve expressions in this interpolator instance.Constructors in org.codehaus.plexus.interpolation with parameters of type ValueSource Constructor Description AbstractDelegatingValueSource(ValueSource delegate)AbstractFunctionValueSourceWrapper(ValueSource valueSource)Construct a new function value source instance, using the suppliedValueSourceto retrieve the input values for the function(s) this class implements.PrefixedValueSourceWrapper(ValueSource 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(ValueSource 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(ValueSource 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(ValueSource 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. -
Uses of ValueSource in org.codehaus.plexus.interpolation.multi
Fields in org.codehaus.plexus.interpolation.multi with type parameters of type ValueSource Modifier and Type Field Description private java.util.List<ValueSource>MultiDelimiterStringSearchInterpolator. valueSourcesMethods in org.codehaus.plexus.interpolation.multi with parameters of type ValueSource Modifier and Type Method Description voidMultiDelimiterStringSearchInterpolator. addValueSource(ValueSource valueSource)Add a newValueSourceto the stack used to resolve expressions in this interpolator instance.voidMultiDelimiterStringSearchInterpolator. removeValuesSource(ValueSource valueSource)Remove the specifiedValueSourcefrom the stack used to resolve expressions in this interpolator instance.MultiDelimiterStringSearchInterpolatorMultiDelimiterStringSearchInterpolator. withValueSource(ValueSource vs)
-