Uses of Class
org.apache.commons.lang3.text.StrLookup
-
Packages that use StrLookup Package Description org.apache.commons.lang3.text Provides classes for handling and manipulating text, partly as an extension tojava.text
. -
-
Uses of StrLookup in org.apache.commons.lang3.text
Methods in org.apache.commons.lang3.text that return StrLookup Modifier and Type Method Description StrLookup<?>
StrSubstitutor. getVariableResolver()
Deprecated.Gets the VariableResolver that is used to lookup variables.static <V> StrLookup<V>
StrLookup. mapLookup(java.util.Map<java.lang.String,V> map)
Deprecated.Returns a lookup which looks up values using a map.static StrLookup<?>
StrLookup. noneLookup()
Deprecated.Returns a lookup which always returns null.static StrLookup<java.lang.String>
StrLookup. systemPropertiesLookup()
Deprecated.Returns a new lookup which uses a copy of the currentSystem properties
.Methods in org.apache.commons.lang3.text with parameters of type StrLookup Modifier and Type Method Description void
StrSubstitutor. setVariableResolver(StrLookup<?> variableResolver)
Deprecated.Sets the VariableResolver that is used to lookup variables.Constructors in org.apache.commons.lang3.text with parameters of type StrLookup Constructor Description StrSubstitutor(StrLookup<?> variableResolver)
Deprecated.Creates a new instance and initializes it.StrSubstitutor(StrLookup<?> variableResolver, java.lang.String prefix, java.lang.String suffix, char escape)
Deprecated.Creates a new instance and initializes it.StrSubstitutor(StrLookup<?> variableResolver, java.lang.String prefix, java.lang.String suffix, char escape, java.lang.String valueDelimiter)
Deprecated.Creates a new instance and initializes it.StrSubstitutor(StrLookup<?> variableResolver, StrMatcher prefixMatcher, StrMatcher suffixMatcher, char escape)
Deprecated.Creates a new instance and initializes it.StrSubstitutor(StrLookup<?> variableResolver, StrMatcher prefixMatcher, StrMatcher suffixMatcher, char escape, StrMatcher valueDelimiterMatcher)
Deprecated.Creates a new instance and initializes it.
-