Uses of Class
org.apache.commons.configuration2.interpol.InterpolatorSpecification.Builder
Package
Description
A package with helper classes used for interpolation (variable substitution).
-
Uses of InterpolatorSpecification.Builder in org.apache.commons.configuration2.interpol
Modifier and TypeMethodDescriptionInterpolatorSpecification.Builder.withDefaultLookup
(Lookup lookup) Adds the givenLookup
object to the list of default lookups.InterpolatorSpecification.Builder.withDefaultLookups
(Collection<? extends Lookup> lookups) Adds the content of the given collection to the default lookups managed by this builder.InterpolatorSpecification.Builder.withInterpolator
(ConfigurationInterpolator ci) Sets theConfigurationInterpolator
instance for theInterpolatorSpecification
.InterpolatorSpecification.Builder.withParentInterpolator
(ConfigurationInterpolator parent) Sets an optional parentConfigurationInterpolator
.InterpolatorSpecification.Builder.withPrefixLookup
(String prefix, Lookup lookup) Adds aLookup
object for a given prefix.InterpolatorSpecification.Builder.withPrefixLookups
(Map<String, ? extends Lookup> lookups) Adds the content of the given map to the prefix lookups managed by this builder.InterpolatorSpecification.Builder.withStringConverter
(Function<Object, String> fn) Sets the function used to convert interpolated values to strings.