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 newConfigurationobjects.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 classConfigurationLookupA specialized implementation of theLookupinterface which uses aConfigurationobject to resolve variables.Method parameters in org.apache.commons.configuration2 with type arguments of type Lookup Modifier and Type Method Description voidAbstractConfiguration. installInterpolator(Map<String,? extends Lookup> prefixLookups, Collection<? extends Lookup> defLookups)Creates and installs a newConfigurationInterpolatorfor thisConfigurationbased on the passed in arguments.voidAbstractConfiguration. installInterpolator(Map<String,? extends Lookup> prefixLookups, Collection<? extends Lookup> defLookups)Creates and installs a newConfigurationInterpolatorfor thisConfigurationbased on the passed in arguments.voidConfiguration. installInterpolator(Map<String,? extends Lookup> prefixLookups, Collection<? extends Lookup> defLookups)Creates and installs a newConfigurationInterpolatorfor thisConfigurationbased on the passed in arguments.voidConfiguration. installInterpolator(Map<String,? extends Lookup> prefixLookups, Collection<? extends Lookup> defLookups)Creates and installs a newConfigurationInterpolatorfor thisConfigurationbased on the passed in arguments.voidAbstractConfiguration. setDefaultLookups(Collection<? extends Lookup> lookups)Adds allLookupobjects in the given collection as default lookups (i.e.voidAbstractConfiguration. setPrefixLookups(Map<String,? extends Lookup> lookups)Registers allLookupobjects in the given map at the currentConfigurationInterpolatorof 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 BasicBuilderParametersBasicBuilderParameters. setDefaultLookups(Collection<? extends Lookup> lookups)Adds additional defaultLookupobjects (i.e.TBasicBuilderProperties. setDefaultLookups(Collection<? extends Lookup> lookups)Adds additional defaultLookupobjects (i.e.BasicBuilderParametersBasicBuilderParameters. setPrefixLookups(Map<String,? extends Lookup> lookups)Sets additionalLookupobjects for specific prefixes for this configuration object.TBasicBuilderProperties. setPrefixLookups(Map<String,? extends Lookup> lookups)Sets additionalLookupobjects 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 classConstantLookupLooks up constant fields in classes.classDummyLookupA simple dummyLookupimplementation.classEnvironmentLookupDeprecated.classExprLookupLookup that allows expressions to be evaluated.classSystemPropertiesLookupDeprecated.Methods in org.apache.commons.configuration2.interpol that return Lookup Modifier and Type Method Description protected LookupConfigurationInterpolator. fetchLookupForPrefix(String prefix)Obtains the lookup object for the specified prefix.LookupDefaultLookups. getLookup()Gets the standardLookupinstance of this kind.static LookupConfigurationInterpolator. nullSafeLookup(Lookup lookup)Utility method for obtaining aLookupobject in a safe way.Methods in org.apache.commons.configuration2.interpol that return types with arguments of type Lookup Modifier and Type Method Description List<Lookup>ConfigurationInterpolator. getDefaultLookups()Gets a collection with the defaultLookupobjects added to thisConfigurationInterpolator.Collection<Lookup>InterpolatorSpecification. getDefaultLookups()Gets a collection with the default lookups.static Map<String,Lookup>ConfigurationInterpolator. getDefaultPrefixLookups()Gets a map containing the default prefix lookups.Map<String,Lookup>ConfigurationInterpolator. getLookups()Gets a map with the currently registeredLookupobjects and their prefixes.Map<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 voidConfigurationInterpolator. addDefaultLookup(Lookup defaultLookup)Adds a defaultLookupobject.static LookupConfigurationInterpolator. nullSafeLookup(Lookup lookup)Utility method for obtaining aLookupobject in a safe way.voidConfigurationInterpolator. registerLookup(String prefix, Lookup lookup)Registers the givenLookupobject for the specified prefix at this instance.booleanConfigurationInterpolator. removeDefaultLookup(Lookup lookup)Removes the specifiedLookupobject from the list of defaultLookups.InterpolatorSpecification.BuilderInterpolatorSpecification.Builder. withDefaultLookup(Lookup lookup)Adds the givenLookupobject to the list of default lookups.InterpolatorSpecification.BuilderInterpolatorSpecification.Builder. withPrefixLookup(String prefix, Lookup lookup)Adds aLookupobject for a given prefix.Method parameters in org.apache.commons.configuration2.interpol with type arguments of type Lookup Modifier and Type Method Description voidConfigurationInterpolator. addDefaultLookups(Collection<? extends Lookup> lookups)Adds allLookupobjects in the given collection as default lookups.voidConfigurationInterpolator. registerLookups(Map<String,? extends Lookup> lookups)Registers allLookupobjects in the given map with their prefixes at thisConfigurationInterpolator.InterpolatorSpecification.BuilderInterpolatorSpecification.Builder. withDefaultLookups(Collection<? extends Lookup> lookups)Adds the content of the given collection to the default lookups managed by this builder.InterpolatorSpecification.BuilderInterpolatorSpecification.Builder. withPrefixLookups(Map<String,? extends Lookup> lookups)Adds the content of the given map to the prefix lookups managed by this builder.
-