Uses of Interface
org.apache.commons.configuration2.interpol.Lookup
-
Packages that use Lookup Package Description org.apache.commons.configuration2 The Configuration main package.org.apache.commons.configuration2.builder This package contains the implementations of configuration builder classes used to create newConfiguration
objects.org.apache.commons.configuration2.interpol 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 Lookup Modifier and Type Class Description class
ConfigurationLookup
A specialized implementation of theLookup
interface which uses aConfiguration
object to resolve variables.Method parameters in org.apache.commons.configuration2 with type arguments of type Lookup Modifier and Type Method Description void
AbstractConfiguration. installInterpolator(java.util.Map<java.lang.String,? extends Lookup> prefixLookups, java.util.Collection<? extends Lookup> defLookups)
Creates and installs a newConfigurationInterpolator
for thisConfiguration
based on the passed in arguments.void
AbstractConfiguration. installInterpolator(java.util.Map<java.lang.String,? extends Lookup> prefixLookups, java.util.Collection<? extends Lookup> defLookups)
Creates and installs a newConfigurationInterpolator
for thisConfiguration
based on the passed in arguments.void
Configuration. installInterpolator(java.util.Map<java.lang.String,? extends Lookup> prefixLookups, java.util.Collection<? extends Lookup> defLookups)
Creates and installs a newConfigurationInterpolator
for thisConfiguration
based on the passed in arguments.void
Configuration. installInterpolator(java.util.Map<java.lang.String,? extends Lookup> prefixLookups, java.util.Collection<? extends Lookup> defLookups)
Creates and installs a newConfigurationInterpolator
for thisConfiguration
based on the passed in arguments.void
AbstractConfiguration. setDefaultLookups(java.util.Collection<? extends Lookup> lookups)
Adds allLookup
objects in the given collection as default lookups (i.e.void
AbstractConfiguration. setPrefixLookups(java.util.Map<java.lang.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
Method parameters in org.apache.commons.configuration2.builder with type arguments of type Lookup Modifier and Type Method Description BasicBuilderParameters
BasicBuilderParameters. setDefaultLookups(java.util.Collection<? extends Lookup> lookups)
Adds additional defaultLookup
objects (i.e.T
BasicBuilderProperties. setDefaultLookups(java.util.Collection<? extends Lookup> lookups)
Adds additional defaultLookup
objects (i.e.BasicBuilderParameters
BasicBuilderParameters. setPrefixLookups(java.util.Map<java.lang.String,? extends Lookup> lookups)
Sets additionalLookup
objects for specific prefixes for this configuration object.T
BasicBuilderProperties. setPrefixLookups(java.util.Map<java.lang.String,? extends Lookup> lookups)
Sets additionalLookup
objects for specific prefixes for this configuration object. -
Uses of Lookup in org.apache.commons.configuration2.interpol
Classes in org.apache.commons.configuration2.interpol that implement Lookup Modifier and Type Class Description class
ConstantLookup
Looks up constant fields in classes.class
DummyLookup
A simple dummyLookup
implementation.class
EnvironmentLookup
Deprecated.class
ExprLookup
Lookup that allows expressions to be evaluated.class
SystemPropertiesLookup
Deprecated.Methods in org.apache.commons.configuration2.interpol that return Lookup Modifier and Type Method Description protected Lookup
ConfigurationInterpolator. fetchLookupForPrefix(java.lang.String prefix)
Obtains the lookup object for the specified prefix.Lookup
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 Lookup Modifier and Type Method Description java.util.List<Lookup>
ConfigurationInterpolator. getDefaultLookups()
Gets a collection with the defaultLookup
objects added to thisConfigurationInterpolator
.java.util.Collection<Lookup>
InterpolatorSpecification. getDefaultLookups()
Gets a collection with the default lookups.static java.util.Map<java.lang.String,Lookup>
ConfigurationInterpolator. getDefaultPrefixLookups()
Gets a map containing the default prefix lookups.java.util.Map<java.lang.String,Lookup>
ConfigurationInterpolator. getLookups()
Gets a map with the currently registeredLookup
objects and their prefixes.java.util.Map<java.lang.String,Lookup>
InterpolatorSpecification. getPrefixLookups()
Gets a map with prefix lookups.Methods in org.apache.commons.configuration2.interpol with parameters of type Lookup Modifier and Type Method Description void
ConfigurationInterpolator. addDefaultLookup(Lookup defaultLookup)
Adds a defaultLookup
object.static Lookup
ConfigurationInterpolator. nullSafeLookup(Lookup lookup)
Utility method for obtaining aLookup
object in a safe way.void
ConfigurationInterpolator. registerLookup(java.lang.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
InterpolatorSpecification.Builder. withDefaultLookup(Lookup lookup)
Adds the givenLookup
object to the list of default lookups.InterpolatorSpecification.Builder
InterpolatorSpecification.Builder. withPrefixLookup(java.lang.String prefix, Lookup lookup)
Adds aLookup
object for a given prefix.Method parameters in org.apache.commons.configuration2.interpol with type arguments of type Lookup Modifier and Type Method Description void
ConfigurationInterpolator. addDefaultLookups(java.util.Collection<? extends Lookup> lookups)
Adds allLookup
objects in the given collection as default lookups.void
ConfigurationInterpolator. registerLookups(java.util.Map<java.lang.String,? extends Lookup> lookups)
Registers allLookup
objects in the given map with their prefixes at thisConfigurationInterpolator
.InterpolatorSpecification.Builder
InterpolatorSpecification.Builder. withDefaultLookups(java.util.Collection<? extends Lookup> lookups)
Adds the content of the given collection to the default lookups managed by this builder.InterpolatorSpecification.Builder
InterpolatorSpecification.Builder. withPrefixLookups(java.util.Map<java.lang.String,? extends Lookup> lookups)
Adds the content of the given map to the prefix lookups managed by this builder.
-