Uses of Interface
org.apache.commons.configuration2.interpol.Lookup
Packages that use Lookup
Package
Description
The Configuration main package.
This package contains the implementations of configuration builder classes used to create new
Configuration
objects.
A package containing the implementation of the builder for combined configurations.
A package with helper classes used for interpolation (variable substitution).
-
Uses of Lookup in org.apache.commons.configuration2
Classes in org.apache.commons.configuration2 that implement LookupModifier and TypeClassDescriptionclass
A specialized implementation of theLookup
interface which uses aConfiguration
object to resolve variables.Methods in org.apache.commons.configuration2 that return LookupModifier and TypeMethodDescriptionprivate Lookup
AbstractConfiguration.findConfigurationLookup
(ConfigurationInterpolator ci) Finds aConfigurationLookup
pointing to this configuration in the default lookups of the specifiedConfigurationInterpolator
.private static Lookup
AbstractConfiguration.findConfigurationLookup
(ConfigurationInterpolator ci, ImmutableConfiguration targetConf) Finds aConfigurationLookup
pointing to the specified configuration in the default lookups for the specifiedConfigurationInterpolator
.Method parameters in org.apache.commons.configuration2 with type arguments of type LookupModifier and TypeMethodDescriptionfinal void
AbstractConfiguration.installInterpolator
(Map<String, ? extends Lookup> prefixLookups, Collection<? extends Lookup> defLookups) Creates and installs a newConfigurationInterpolator
for thisConfiguration
based on the passed in arguments.final void
AbstractConfiguration.installInterpolator
(Map<String, ? extends Lookup> prefixLookups, Collection<? extends Lookup> defLookups) Creates and installs a newConfigurationInterpolator
for thisConfiguration
based on the passed in arguments.void
Configuration.installInterpolator
(Map<String, ? extends Lookup> prefixLookups, Collection<? extends Lookup> defLookups) Creates and installs a newConfigurationInterpolator
for thisConfiguration
based on the passed in arguments.void
Configuration.installInterpolator
(Map<String, ? extends Lookup> prefixLookups, Collection<? extends Lookup> defLookups) Creates and installs a newConfigurationInterpolator
for thisConfiguration
based on the passed in arguments.void
AbstractConfiguration.setDefaultLookups
(Collection<? extends Lookup> lookups) Adds allLookup
objects in the given collection as default lookups (i.e.void
AbstractConfiguration.setPrefixLookups
(Map<String, ? extends Lookup> lookups) Registers allLookup
objects in the given map at the currentConfigurationInterpolator
of this configuration. -
Uses of Lookup in org.apache.commons.configuration2.builder
Methods in org.apache.commons.configuration2.builder that return types with arguments of type LookupModifier and TypeMethodDescriptionprivate static Collection
<? extends Lookup> BasicBuilderParameters.fetchAndCheckDefaultLookups
(Map<String, Object> params) Tests whether the passed in map with parameters contains a valid collection with default lookups.BasicBuilderParameters.fetchAndCheckPrefixLookups
(Map<String, Object> params) Tests whether the passed in map with parameters contains a map with prefix lookups.private static Collection
<? extends Lookup> BasicBuilderParameters.fetchDefaultLookups
(Map<String, Object> params) Obtains the collection with default lookups from the parameters map.BasicBuilderParameters.fetchPrefixLookups
(Map<String, Object> params) Obtains the map with prefix lookups from the parameters map.Method parameters in org.apache.commons.configuration2.builder with type arguments of type LookupModifier and TypeMethodDescriptionBasicBuilderParameters.setDefaultLookups
(Collection<? extends Lookup> lookups) Adds additional defaultLookup
objects (i.e.BasicBuilderProperties.setDefaultLookups
(Collection<? extends Lookup> lookups) Adds additional defaultLookup
objects (i.e.BasicBuilderParameters.setPrefixLookups
(Map<String, ? extends Lookup> lookups) Sets additionalLookup
objects for specific prefixes for this configuration object.BasicBuilderProperties.setPrefixLookups
(Map<String, ? extends Lookup> lookups) Sets additionalLookup
objects for specific prefixes for this configuration object. -
Uses of Lookup in org.apache.commons.configuration2.builder.combined
Methods in org.apache.commons.configuration2.builder.combined that return types with arguments of type LookupModifier and TypeMethodDescriptionCombinedConfigurationBuilder.fetchPrefixLookups()
Returns a map with the current prefix lookup objects. -
Uses of Lookup in org.apache.commons.configuration2.interpol
Classes in org.apache.commons.configuration2.interpol that implement LookupModifier and TypeClassDescriptionclass
Looks up constant fields in classes.enum
A simple dummyLookup
implementation.class
Deprecated.class
Lookup that allows expressions to be evaluated.(package private) final class
Wraps an Apache Commons TextStringLookup
as an Apache Commons ConfigurationLookup
.class
Deprecated.Fields in org.apache.commons.configuration2.interpol declared as LookupModifier and TypeFieldDescriptionprivate final Lookup
DefaultLookups.lookup
The associated lookup instance.Fields in org.apache.commons.configuration2.interpol with type parameters of type LookupModifier and TypeFieldDescriptionConfigurationInterpolator.defaultLookups
Stores the default lookup objects.ConfigurationInterpolator.DefaultPrefixLookupsHolder.defaultLookups
Default lookup map.private final Collection
<Lookup> InterpolatorSpecification.defaultLookups
The collection with default lookups.private final Collection
<Lookup> InterpolatorSpecification.Builder.defLookups
A collection with default lookups.ConfigurationInterpolator.prefixLookups
A map with the currently registered lookup objects.InterpolatorSpecification.Builder.prefixLookups
A map with prefix lookups.InterpolatorSpecification.prefixLookups
The map with prefix lookups.Methods in org.apache.commons.configuration2.interpol that return LookupModifier and TypeMethodDescriptionprotected Lookup
ConfigurationInterpolator.fetchLookupForPrefix
(String prefix) Obtains the lookup object for the specified prefix.DefaultLookups.getLookup()
Gets the standardLookup
instance of this kind.static Lookup
ConfigurationInterpolator.nullSafeLookup
(Lookup lookup) Utility method for obtaining aLookup
object in a safe way.Methods in org.apache.commons.configuration2.interpol that return types with arguments of type LookupModifier and TypeMethodDescriptionConfigurationInterpolator.DefaultPrefixLookupsHolder.createDefaultLookups()
Create the lookup map used when the user has requested no customization.ConfigurationInterpolator.getDefaultLookups()
Gets a collection with the defaultLookup
objects added to thisConfigurationInterpolator
.InterpolatorSpecification.getDefaultLookups()
Gets a collection with the default lookups.ConfigurationInterpolator.DefaultPrefixLookupsHolder.getDefaultPrefixLookups()
Gets the default prefix lookups map.ConfigurationInterpolator.getDefaultPrefixLookups()
Gets a map containing the default prefix lookups.ConfigurationInterpolator.getLookups()
Gets a map with the currently registeredLookup
objects and their prefixes.InterpolatorSpecification.getPrefixLookups()
Gets a map with prefix lookups.ConfigurationInterpolator.DefaultPrefixLookupsHolder.parseLookups
(String str) Constructs a lookup map by parsing the given string.Methods in org.apache.commons.configuration2.interpol with parameters of type LookupModifier and TypeMethodDescriptionvoid
ConfigurationInterpolator.addDefaultLookup
(Lookup defaultLookup) Adds a defaultLookup
object.private static void
InterpolatorSpecification.Builder.checkLookup
(Lookup lookup) Helper method for checking a lookup.static Lookup
ConfigurationInterpolator.nullSafeLookup
(Lookup lookup) Utility method for obtaining aLookup
object in a safe way.void
ConfigurationInterpolator.registerLookup
(String prefix, Lookup lookup) Registers the givenLookup
object for the specified prefix at this instance.boolean
ConfigurationInterpolator.removeDefaultLookup
(Lookup lookup) Removes the specifiedLookup
object from the list of defaultLookup
s.InterpolatorSpecification.Builder.withDefaultLookup
(Lookup lookup) Adds the givenLookup
object to the list of default lookups.InterpolatorSpecification.Builder.withPrefixLookup
(String prefix, Lookup lookup) Adds aLookup
object for a given prefix.Method parameters in org.apache.commons.configuration2.interpol with type arguments of type LookupModifier and TypeMethodDescriptionvoid
ConfigurationInterpolator.addDefaultLookups
(Collection<? extends Lookup> lookups) Adds allLookup
objects in the given collection as default lookups.private static void
ConfigurationInterpolator.DefaultPrefixLookupsHolder.addLookup
(DefaultLookups lookup, Map<String, Lookup> map) Add the prefix and lookup fromlookup
tomap
.void
ConfigurationInterpolator.registerLookups
(Map<String, ? extends Lookup> lookups) Registers allLookup
objects in the given map with their prefixes at thisConfigurationInterpolator
.InterpolatorSpecification.Builder.withDefaultLookups
(Collection<? extends Lookup> lookups) Adds the content of the given collection to the default lookups managed by this builder.InterpolatorSpecification.Builder.withPrefixLookups
(Map<String, ? extends Lookup> lookups) Adds the content of the given map to the prefix lookups managed by this builder.Constructors in org.apache.commons.configuration2.interpol with parameters of type LookupModifierConstructorDescriptionprivate
DefaultLookups
(String prefix, Lookup lookup) Creates a new instance ofDefaultLookups
and sets the prefix and the associated lookup instance.
DefaultLookups.ENVIRONMENT
.