Class StrSubstitutor


  • @Deprecated
    public class StrSubstitutor
    extends java.lang.Object
    Deprecated.
    as of 3.6, use commons-text StringSubstitutor instead
    Substitutes variables within a string by values.

    This class takes a piece of text and substitutes all the variables within it. The default definition of a variable is ${variableName}. The prefix and suffix can be changed via constructors and set methods.

    Variable values are typically resolved from a map, but could also be resolved from system properties, or by supplying a custom variable resolver.

    The simplest example is to use this class to replace Java System properties. For example:

     StrSubstitutor.replaceSystemProperties(
          "You are running with java.version = ${java.version} and os.name = ${os.name}.");
     

    Typical usage of this class follows the following pattern: First an instance is created and initialized with the map that contains the values for the available variables. If a prefix and/or suffix for variables should be used other than the default ones, the appropriate settings can be performed. After that the replace() method can be called passing in the source text for interpolation. In the returned text all variable references (as long as their values are known) will be resolved. The following example demonstrates this:

     Map valuesMap = HashMap();
     valuesMap.put("animal", "quick brown fox");
     valuesMap.put("target", "lazy dog");
     String templateString = "The ${animal} jumps over the ${target}.";
     StrSubstitutor sub = new StrSubstitutor(valuesMap);
     String resolvedString = sub.replace(templateString);
     
    yielding:
          The quick brown fox jumps over the lazy dog.
     

    Also, this class allows to set a default value for unresolved variables. The default value for a variable can be appended to the variable name after the variable default value delimiter. The default value of the variable default value delimiter is ':-', as in bash and other *nix shells, as those are arguably where the default ${} delimiter set originated. The variable default value delimiter can be manually set by calling setValueDelimiterMatcher(StrMatcher), setValueDelimiter(char) or setValueDelimiter(String). The following shows an example with variable default value settings:

     Map valuesMap = HashMap();
     valuesMap.put("animal", "quick brown fox");
     valuesMap.put("target", "lazy dog");
     String templateString = "The ${animal} jumps over the ${target}. ${undefined.number:-1234567890}.";
     StrSubstitutor sub = new StrSubstitutor(valuesMap);
     String resolvedString = sub.replace(templateString);
     
    yielding:
          The quick brown fox jumps over the lazy dog. 1234567890.
     

    In addition to this usage pattern there are some static convenience methods that cover the most common use cases. These methods can be used without the need of manually creating an instance. However if multiple replace operations are to be performed, creating and reusing an instance of this class will be more efficient.

    Variable replacement works in a recursive way. Thus, if a variable value contains a variable then that variable will also be replaced. Cyclic replacements are detected and will cause an exception to be thrown.

    Sometimes the interpolation's result must contain a variable prefix. As an example take the following source text:

       The variable ${${name}} must be used.
     
    Here only the variable's name referred to in the text should be replaced resulting in the text (assuming that the value of the name variable is x):
       The variable ${x} must be used.
     
    To achieve this effect there are two possibilities: Either set a different prefix and suffix for variables which do not conflict with the result text you want to produce. The other possibility is to use the escape character, by default '$'. If this character is placed before a variable reference, this reference is ignored and won't be replaced. For example:
       The variable $${${name}} must be used.
     

    In some complex scenarios you might even want to perform substitution in the names of variables, for instance

     ${jre-${java.specification.version}}
     
    StrSubstitutor supports this recursive substitution in variable names, but it has to be enabled explicitly by setting the enableSubstitutionInVariables property to true.

    This class is not thread safe.

    Since:
    2.2
    • Constructor Summary

      Constructors 
      Constructor Description
      StrSubstitutor()
      Deprecated.
      Creates a new instance with defaults for variable prefix and suffix and the escaping character.
      StrSubstitutor​(java.util.Map<java.lang.String,​V> valueMap)
      Deprecated.
      Creates a new instance and initializes it.
      StrSubstitutor​(java.util.Map<java.lang.String,​V> valueMap, java.lang.String prefix, java.lang.String suffix)
      Deprecated.
      Creates a new instance and initializes it.
      StrSubstitutor​(java.util.Map<java.lang.String,​V> valueMap, java.lang.String prefix, java.lang.String suffix, char escape)
      Deprecated.
      Creates a new instance and initializes it.
      StrSubstitutor​(java.util.Map<java.lang.String,​V> valueMap, 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)
      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.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      char getEscapeChar()
      Deprecated.
      Returns the escape character.
      StrMatcher getValueDelimiterMatcher()
      Deprecated.
      Gets the variable default value delimiter matcher currently in use.
      StrMatcher getVariablePrefixMatcher()
      Deprecated.
      Gets the variable prefix matcher currently in use.
      StrLookup<?> getVariableResolver()
      Deprecated.
      Gets the VariableResolver that is used to lookup variables.
      StrMatcher getVariableSuffixMatcher()
      Deprecated.
      Gets the variable suffix matcher currently in use.
      boolean isEnableSubstitutionInVariables()
      Deprecated.
      Returns a flag whether substitution is done in variable names.
      boolean isPreserveEscapes()
      Deprecated.
      Returns the flag controlling whether escapes are preserved during substitution.
      java.lang.String replace​(char[] source)
      Deprecated.
      Replaces all the occurrences of variables with their matching values from the resolver using the given source array as a template.
      java.lang.String replace​(char[] source, int offset, int length)
      Deprecated.
      Replaces all the occurrences of variables with their matching values from the resolver using the given source array as a template.
      java.lang.String replace​(java.lang.CharSequence source)
      Deprecated.
      Replaces all the occurrences of variables with their matching values from the resolver using the given source as a template.
      java.lang.String replace​(java.lang.CharSequence source, int offset, int length)
      Deprecated.
      Replaces all the occurrences of variables with their matching values from the resolver using the given source as a template.
      java.lang.String replace​(java.lang.Object source)
      Deprecated.
      Replaces all the occurrences of variables in the given source object with their matching values from the resolver.
      static <V> java.lang.String replace​(java.lang.Object source, java.util.Map<java.lang.String,​V> valueMap)
      Deprecated.
      Replaces all the occurrences of variables in the given source object with their matching values from the map.
      static <V> java.lang.String replace​(java.lang.Object source, java.util.Map<java.lang.String,​V> valueMap, java.lang.String prefix, java.lang.String suffix)
      Deprecated.
      Replaces all the occurrences of variables in the given source object with their matching values from the map.
      static java.lang.String replace​(java.lang.Object source, java.util.Properties valueProperties)
      Deprecated.
      Replaces all the occurrences of variables in the given source object with their matching values from the properties.
      java.lang.String replace​(java.lang.String source)
      Deprecated.
      Replaces all the occurrences of variables with their matching values from the resolver using the given source string as a template.
      java.lang.String replace​(java.lang.StringBuffer source)
      Deprecated.
      Replaces all the occurrences of variables with their matching values from the resolver using the given source buffer as a template.
      java.lang.String replace​(java.lang.StringBuffer source, int offset, int length)
      Deprecated.
      Replaces all the occurrences of variables with their matching values from the resolver using the given source buffer as a template.
      java.lang.String replace​(java.lang.String source, int offset, int length)
      Deprecated.
      Replaces all the occurrences of variables with their matching values from the resolver using the given source string as a template.
      java.lang.String replace​(StrBuilder source)
      Deprecated.
      Replaces all the occurrences of variables with their matching values from the resolver using the given source builder as a template.
      java.lang.String replace​(StrBuilder source, int offset, int length)
      Deprecated.
      Replaces all the occurrences of variables with their matching values from the resolver using the given source builder as a template.
      boolean replaceIn​(java.lang.StringBuffer source)
      Deprecated.
      Replaces all the occurrences of variables within the given source buffer with their matching values from the resolver.
      boolean replaceIn​(java.lang.StringBuffer source, int offset, int length)
      Deprecated.
      Replaces all the occurrences of variables within the given source buffer with their matching values from the resolver.
      boolean replaceIn​(java.lang.StringBuilder source)
      Deprecated.
      Replaces all the occurrences of variables within the given source buffer with their matching values from the resolver.
      boolean replaceIn​(java.lang.StringBuilder source, int offset, int length)
      Deprecated.
      Replaces all the occurrences of variables within the given source builder with their matching values from the resolver.
      boolean replaceIn​(StrBuilder source)
      Deprecated.
      Replaces all the occurrences of variables within the given source builder with their matching values from the resolver.
      boolean replaceIn​(StrBuilder source, int offset, int length)
      Deprecated.
      Replaces all the occurrences of variables within the given source builder with their matching values from the resolver.
      static java.lang.String replaceSystemProperties​(java.lang.Object source)
      Deprecated.
      Replaces all the occurrences of variables in the given source object with their matching values from the system properties.
      void setEnableSubstitutionInVariables​(boolean enableSubstitutionInVariables)
      Deprecated.
      Sets a flag whether substitution is done in variable names.
      void setEscapeChar​(char escapeCharacter)
      Deprecated.
      Sets the escape character.
      void setPreserveEscapes​(boolean preserveEscapes)
      Deprecated.
      Sets a flag controlling whether escapes are preserved during substitution.
      StrSubstitutor setValueDelimiter​(char valueDelimiter)
      Deprecated.
      Sets the variable default value delimiter to use.
      StrSubstitutor setValueDelimiter​(java.lang.String valueDelimiter)
      Deprecated.
      Sets the variable default value delimiter to use.
      StrSubstitutor setValueDelimiterMatcher​(StrMatcher valueDelimiterMatcher)
      Deprecated.
      Sets the variable default value delimiter matcher to use.
      StrSubstitutor setVariablePrefix​(char prefix)
      Deprecated.
      Sets the variable prefix to use.
      StrSubstitutor setVariablePrefix​(java.lang.String prefix)
      Deprecated.
      Sets the variable prefix to use.
      StrSubstitutor setVariablePrefixMatcher​(StrMatcher prefixMatcher)
      Deprecated.
      Sets the variable prefix matcher currently in use.
      void setVariableResolver​(StrLookup<?> variableResolver)
      Deprecated.
      Sets the VariableResolver that is used to lookup variables.
      StrSubstitutor setVariableSuffix​(char suffix)
      Deprecated.
      Sets the variable suffix to use.
      StrSubstitutor setVariableSuffix​(java.lang.String suffix)
      Deprecated.
      Sets the variable suffix to use.
      StrSubstitutor setVariableSuffixMatcher​(StrMatcher suffixMatcher)
      Deprecated.
      Sets the variable suffix matcher currently in use.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • DEFAULT_ESCAPE

        public static final char DEFAULT_ESCAPE
        Deprecated.
        Constant for the default escape character.
        See Also:
        Constant Field Values
      • DEFAULT_PREFIX

        public static final StrMatcher DEFAULT_PREFIX
        Deprecated.
        Constant for the default variable prefix.
      • DEFAULT_SUFFIX

        public static final StrMatcher DEFAULT_SUFFIX
        Deprecated.
        Constant for the default variable suffix.
      • DEFAULT_VALUE_DELIMITER

        public static final StrMatcher DEFAULT_VALUE_DELIMITER
        Deprecated.
        Constant for the default value delimiter of a variable.
        Since:
        3.2
    • Constructor Detail

      • StrSubstitutor

        public StrSubstitutor()
        Deprecated.
        Creates a new instance with defaults for variable prefix and suffix and the escaping character.
      • StrSubstitutor

        public StrSubstitutor​(java.util.Map<java.lang.String,​V> valueMap)
        Deprecated.
        Creates a new instance and initializes it. Uses defaults for variable prefix and suffix and the escaping character.
        Type Parameters:
        V - the type of the values in the map
        Parameters:
        valueMap - the map with the variables' values, may be null
      • StrSubstitutor

        public StrSubstitutor​(java.util.Map<java.lang.String,​V> valueMap,
                              java.lang.String prefix,
                              java.lang.String suffix)
        Deprecated.
        Creates a new instance and initializes it. Uses a default escaping character.
        Type Parameters:
        V - the type of the values in the map
        Parameters:
        valueMap - the map with the variables' values, may be null
        prefix - the prefix for variables, not null
        suffix - the suffix for variables, not null
        Throws:
        java.lang.IllegalArgumentException - if the prefix or suffix is null
      • StrSubstitutor

        public StrSubstitutor​(java.util.Map<java.lang.String,​V> valueMap,
                              java.lang.String prefix,
                              java.lang.String suffix,
                              char escape)
        Deprecated.
        Creates a new instance and initializes it.
        Type Parameters:
        V - the type of the values in the map
        Parameters:
        valueMap - the map with the variables' values, may be null
        prefix - the prefix for variables, not null
        suffix - the suffix for variables, not null
        escape - the escape character
        Throws:
        java.lang.IllegalArgumentException - if the prefix or suffix is null
      • StrSubstitutor

        public StrSubstitutor​(java.util.Map<java.lang.String,​V> valueMap,
                              java.lang.String prefix,
                              java.lang.String suffix,
                              char escape,
                              java.lang.String valueDelimiter)
        Deprecated.
        Creates a new instance and initializes it.
        Type Parameters:
        V - the type of the values in the map
        Parameters:
        valueMap - the map with the variables' values, may be null
        prefix - the prefix for variables, not null
        suffix - the suffix for variables, not null
        escape - the escape character
        valueDelimiter - the variable default value delimiter, may be null
        Throws:
        java.lang.IllegalArgumentException - if the prefix or suffix is null
        Since:
        3.2
      • StrSubstitutor

        public StrSubstitutor​(StrLookup<?> variableResolver)
        Deprecated.
        Creates a new instance and initializes it.
        Parameters:
        variableResolver - the variable resolver, may be null
      • StrSubstitutor

        public StrSubstitutor​(StrLookup<?> variableResolver,
                              java.lang.String prefix,
                              java.lang.String suffix,
                              char escape)
        Deprecated.
        Creates a new instance and initializes it.
        Parameters:
        variableResolver - the variable resolver, may be null
        prefix - the prefix for variables, not null
        suffix - the suffix for variables, not null
        escape - the escape character
        Throws:
        java.lang.IllegalArgumentException - if the prefix or suffix is null
      • StrSubstitutor

        public 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.
        Parameters:
        variableResolver - the variable resolver, may be null
        prefix - the prefix for variables, not null
        suffix - the suffix for variables, not null
        escape - the escape character
        valueDelimiter - the variable default value delimiter string, may be null
        Throws:
        java.lang.IllegalArgumentException - if the prefix or suffix is null
        Since:
        3.2
      • StrSubstitutor

        public StrSubstitutor​(StrLookup<?> variableResolver,
                              StrMatcher prefixMatcher,
                              StrMatcher suffixMatcher,
                              char escape)
        Deprecated.
        Creates a new instance and initializes it.
        Parameters:
        variableResolver - the variable resolver, may be null
        prefixMatcher - the prefix for variables, not null
        suffixMatcher - the suffix for variables, not null
        escape - the escape character
        Throws:
        java.lang.IllegalArgumentException - if the prefix or suffix is null
      • StrSubstitutor

        public StrSubstitutor​(StrLookup<?> variableResolver,
                              StrMatcher prefixMatcher,
                              StrMatcher suffixMatcher,
                              char escape,
                              StrMatcher valueDelimiterMatcher)
        Deprecated.
        Creates a new instance and initializes it.
        Parameters:
        variableResolver - the variable resolver, may be null
        prefixMatcher - the prefix for variables, not null
        suffixMatcher - the suffix for variables, not null
        escape - the escape character
        valueDelimiterMatcher - the variable default value delimiter matcher, may be null
        Throws:
        java.lang.IllegalArgumentException - if the prefix or suffix is null
        Since:
        3.2
    • Method Detail

      • replace

        public static <V> java.lang.String replace​(java.lang.Object source,
                                                   java.util.Map<java.lang.String,​V> valueMap)
        Deprecated.
        Replaces all the occurrences of variables in the given source object with their matching values from the map.
        Type Parameters:
        V - the type of the values in the map
        Parameters:
        source - the source text containing the variables to substitute, null returns null
        valueMap - the map with the values, may be null
        Returns:
        the result of the replace operation
      • replace

        public static <V> java.lang.String replace​(java.lang.Object source,
                                                   java.util.Map<java.lang.String,​V> valueMap,
                                                   java.lang.String prefix,
                                                   java.lang.String suffix)
        Deprecated.
        Replaces all the occurrences of variables in the given source object with their matching values from the map. This method allows to specify a custom variable prefix and suffix
        Type Parameters:
        V - the type of the values in the map
        Parameters:
        source - the source text containing the variables to substitute, null returns null
        valueMap - the map with the values, may be null
        prefix - the prefix of variables, not null
        suffix - the suffix of variables, not null
        Returns:
        the result of the replace operation
        Throws:
        java.lang.IllegalArgumentException - if the prefix or suffix is null
      • replace

        public static java.lang.String replace​(java.lang.Object source,
                                               java.util.Properties valueProperties)
        Deprecated.
        Replaces all the occurrences of variables in the given source object with their matching values from the properties.
        Parameters:
        source - the source text containing the variables to substitute, null returns null
        valueProperties - the properties with values, may be null
        Returns:
        the result of the replace operation
      • replaceSystemProperties

        public static java.lang.String replaceSystemProperties​(java.lang.Object source)
        Deprecated.
        Replaces all the occurrences of variables in the given source object with their matching values from the system properties.
        Parameters:
        source - the source text containing the variables to substitute, null returns null
        Returns:
        the result of the replace operation
      • replace

        public java.lang.String replace​(java.lang.String source)
        Deprecated.
        Replaces all the occurrences of variables with their matching values from the resolver using the given source string as a template.
        Parameters:
        source - the string to replace in, null returns null
        Returns:
        the result of the replace operation
      • replace

        public java.lang.String replace​(java.lang.String source,
                                        int offset,
                                        int length)
        Deprecated.
        Replaces all the occurrences of variables with their matching values from the resolver using the given source string as a template.

        Only the specified portion of the string will be processed. The rest of the string is not processed, and is not returned.

        Parameters:
        source - the string to replace in, null returns null
        offset - the start offset within the array, must be valid
        length - the length within the array to be processed, must be valid
        Returns:
        the result of the replace operation
      • replace

        public java.lang.String replace​(char[] source)
        Deprecated.
        Replaces all the occurrences of variables with their matching values from the resolver using the given source array as a template. The array is not altered by this method.
        Parameters:
        source - the character array to replace in, not altered, null returns null
        Returns:
        the result of the replace operation
      • replace

        public java.lang.String replace​(char[] source,
                                        int offset,
                                        int length)
        Deprecated.
        Replaces all the occurrences of variables with their matching values from the resolver using the given source array as a template. The array is not altered by this method.

        Only the specified portion of the array will be processed. The rest of the array is not processed, and is not returned.

        Parameters:
        source - the character array to replace in, not altered, null returns null
        offset - the start offset within the array, must be valid
        length - the length within the array to be processed, must be valid
        Returns:
        the result of the replace operation
      • replace

        public java.lang.String replace​(java.lang.StringBuffer source)
        Deprecated.
        Replaces all the occurrences of variables with their matching values from the resolver using the given source buffer as a template. The buffer is not altered by this method.
        Parameters:
        source - the buffer to use as a template, not changed, null returns null
        Returns:
        the result of the replace operation
      • replace

        public java.lang.String replace​(java.lang.StringBuffer source,
                                        int offset,
                                        int length)
        Deprecated.
        Replaces all the occurrences of variables with their matching values from the resolver using the given source buffer as a template. The buffer is not altered by this method.

        Only the specified portion of the buffer will be processed. The rest of the buffer is not processed, and is not returned.

        Parameters:
        source - the buffer to use as a template, not changed, null returns null
        offset - the start offset within the array, must be valid
        length - the length within the array to be processed, must be valid
        Returns:
        the result of the replace operation
      • replace

        public java.lang.String replace​(java.lang.CharSequence source)
        Deprecated.
        Replaces all the occurrences of variables with their matching values from the resolver using the given source as a template. The source is not altered by this method.
        Parameters:
        source - the buffer to use as a template, not changed, null returns null
        Returns:
        the result of the replace operation
        Since:
        3.2
      • replace

        public java.lang.String replace​(java.lang.CharSequence source,
                                        int offset,
                                        int length)
        Deprecated.
        Replaces all the occurrences of variables with their matching values from the resolver using the given source as a template. The source is not altered by this method.

        Only the specified portion of the buffer will be processed. The rest of the buffer is not processed, and is not returned.

        Parameters:
        source - the buffer to use as a template, not changed, null returns null
        offset - the start offset within the array, must be valid
        length - the length within the array to be processed, must be valid
        Returns:
        the result of the replace operation
        Since:
        3.2
      • replace

        public java.lang.String replace​(StrBuilder source)
        Deprecated.
        Replaces all the occurrences of variables with their matching values from the resolver using the given source builder as a template. The builder is not altered by this method.
        Parameters:
        source - the builder to use as a template, not changed, null returns null
        Returns:
        the result of the replace operation
      • replace

        public java.lang.String replace​(StrBuilder source,
                                        int offset,
                                        int length)
        Deprecated.
        Replaces all the occurrences of variables with their matching values from the resolver using the given source builder as a template. The builder is not altered by this method.

        Only the specified portion of the builder will be processed. The rest of the builder is not processed, and is not returned.

        Parameters:
        source - the builder to use as a template, not changed, null returns null
        offset - the start offset within the array, must be valid
        length - the length within the array to be processed, must be valid
        Returns:
        the result of the replace operation
      • replace

        public java.lang.String replace​(java.lang.Object source)
        Deprecated.
        Replaces all the occurrences of variables in the given source object with their matching values from the resolver. The input source object is converted to a string using toString and is not altered.
        Parameters:
        source - the source to replace in, null returns null
        Returns:
        the result of the replace operation
      • replaceIn

        public boolean replaceIn​(java.lang.StringBuffer source)
        Deprecated.
        Replaces all the occurrences of variables within the given source buffer with their matching values from the resolver. The buffer is updated with the result.
        Parameters:
        source - the buffer to replace in, updated, null returns zero
        Returns:
        true if altered
      • replaceIn

        public boolean replaceIn​(java.lang.StringBuffer source,
                                 int offset,
                                 int length)
        Deprecated.
        Replaces all the occurrences of variables within the given source buffer with their matching values from the resolver. The buffer is updated with the result.

        Only the specified portion of the buffer will be processed. The rest of the buffer is not processed, but it is not deleted.

        Parameters:
        source - the buffer to replace in, updated, null returns zero
        offset - the start offset within the array, must be valid
        length - the length within the buffer to be processed, must be valid
        Returns:
        true if altered
      • replaceIn

        public boolean replaceIn​(java.lang.StringBuilder source)
        Deprecated.
        Replaces all the occurrences of variables within the given source buffer with their matching values from the resolver. The buffer is updated with the result.
        Parameters:
        source - the buffer to replace in, updated, null returns zero
        Returns:
        true if altered
        Since:
        3.2
      • replaceIn

        public boolean replaceIn​(java.lang.StringBuilder source,
                                 int offset,
                                 int length)
        Deprecated.
        Replaces all the occurrences of variables within the given source builder with their matching values from the resolver. The builder is updated with the result.

        Only the specified portion of the buffer will be processed. The rest of the buffer is not processed, but it is not deleted.

        Parameters:
        source - the buffer to replace in, updated, null returns zero
        offset - the start offset within the array, must be valid
        length - the length within the buffer to be processed, must be valid
        Returns:
        true if altered
        Since:
        3.2
      • replaceIn

        public boolean replaceIn​(StrBuilder source)
        Deprecated.
        Replaces all the occurrences of variables within the given source builder with their matching values from the resolver.
        Parameters:
        source - the builder to replace in, updated, null returns zero
        Returns:
        true if altered
      • replaceIn

        public boolean replaceIn​(StrBuilder source,
                                 int offset,
                                 int length)
        Deprecated.
        Replaces all the occurrences of variables within the given source builder with their matching values from the resolver.

        Only the specified portion of the builder will be processed. The rest of the builder is not processed, but it is not deleted.

        Parameters:
        source - the builder to replace in, null returns zero
        offset - the start offset within the array, must be valid
        length - the length within the builder to be processed, must be valid
        Returns:
        true if altered
      • getEscapeChar

        public char getEscapeChar()
        Deprecated.
        Returns the escape character.
        Returns:
        the character used for escaping variable references
      • setEscapeChar

        public void setEscapeChar​(char escapeCharacter)
        Deprecated.
        Sets the escape character. If this character is placed before a variable reference in the source text, this variable will be ignored.
        Parameters:
        escapeCharacter - the escape character (0 for disabling escaping)
      • getVariablePrefixMatcher

        public StrMatcher getVariablePrefixMatcher()
        Deprecated.
        Gets the variable prefix matcher currently in use.

        The variable prefix is the character or characters that identify the start of a variable. This prefix is expressed in terms of a matcher allowing advanced prefix matches.

        Returns:
        the prefix matcher in use
      • setVariablePrefixMatcher

        public StrSubstitutor setVariablePrefixMatcher​(StrMatcher prefixMatcher)
        Deprecated.
        Sets the variable prefix matcher currently in use.

        The variable prefix is the character or characters that identify the start of a variable. This prefix is expressed in terms of a matcher allowing advanced prefix matches.

        Parameters:
        prefixMatcher - the prefix matcher to use, null ignored
        Returns:
        this, to enable chaining
        Throws:
        java.lang.IllegalArgumentException - if the prefix matcher is null
      • setVariablePrefix

        public StrSubstitutor setVariablePrefix​(char prefix)
        Deprecated.
        Sets the variable prefix to use.

        The variable prefix is the character or characters that identify the start of a variable. This method allows a single character prefix to be easily set.

        Parameters:
        prefix - the prefix character to use
        Returns:
        this, to enable chaining
      • setVariablePrefix

        public StrSubstitutor setVariablePrefix​(java.lang.String prefix)
        Deprecated.
        Sets the variable prefix to use.

        The variable prefix is the character or characters that identify the start of a variable. This method allows a string prefix to be easily set.

        Parameters:
        prefix - the prefix for variables, not null
        Returns:
        this, to enable chaining
        Throws:
        java.lang.IllegalArgumentException - if the prefix is null
      • getVariableSuffixMatcher

        public StrMatcher getVariableSuffixMatcher()
        Deprecated.
        Gets the variable suffix matcher currently in use.

        The variable suffix is the character or characters that identify the end of a variable. This suffix is expressed in terms of a matcher allowing advanced suffix matches.

        Returns:
        the suffix matcher in use
      • setVariableSuffixMatcher

        public StrSubstitutor setVariableSuffixMatcher​(StrMatcher suffixMatcher)
        Deprecated.
        Sets the variable suffix matcher currently in use.

        The variable suffix is the character or characters that identify the end of a variable. This suffix is expressed in terms of a matcher allowing advanced suffix matches.

        Parameters:
        suffixMatcher - the suffix matcher to use, null ignored
        Returns:
        this, to enable chaining
        Throws:
        java.lang.IllegalArgumentException - if the suffix matcher is null
      • setVariableSuffix

        public StrSubstitutor setVariableSuffix​(char suffix)
        Deprecated.
        Sets the variable suffix to use.

        The variable suffix is the character or characters that identify the end of a variable. This method allows a single character suffix to be easily set.

        Parameters:
        suffix - the suffix character to use
        Returns:
        this, to enable chaining
      • setVariableSuffix

        public StrSubstitutor setVariableSuffix​(java.lang.String suffix)
        Deprecated.
        Sets the variable suffix to use.

        The variable suffix is the character or characters that identify the end of a variable. This method allows a string suffix to be easily set.

        Parameters:
        suffix - the suffix for variables, not null
        Returns:
        this, to enable chaining
        Throws:
        java.lang.IllegalArgumentException - if the suffix is null
      • getValueDelimiterMatcher

        public StrMatcher getValueDelimiterMatcher()
        Deprecated.
        Gets the variable default value delimiter matcher currently in use.

        The variable default value delimiter is the character or characters that delimit the variable name and the variable default value. This delimiter is expressed in terms of a matcher allowing advanced variable default value delimiter matches.

        If it returns null, then the variable default value resolution is disabled.

        Returns:
        the variable default value delimiter matcher in use, may be null
        Since:
        3.2
      • setValueDelimiterMatcher

        public StrSubstitutor setValueDelimiterMatcher​(StrMatcher valueDelimiterMatcher)
        Deprecated.
        Sets the variable default value delimiter matcher to use.

        The variable default value delimiter is the character or characters that delimit the variable name and the variable default value. This delimiter is expressed in terms of a matcher allowing advanced variable default value delimiter matches.

        If the valueDelimiterMatcher is null, then the variable default value resolution becomes disabled.

        Parameters:
        valueDelimiterMatcher - variable default value delimiter matcher to use, may be null
        Returns:
        this, to enable chaining
        Since:
        3.2
      • setValueDelimiter

        public StrSubstitutor setValueDelimiter​(char valueDelimiter)
        Deprecated.
        Sets the variable default value delimiter to use.

        The variable default value delimiter is the character or characters that delimit the variable name and the variable default value. This method allows a single character variable default value delimiter to be easily set.

        Parameters:
        valueDelimiter - the variable default value delimiter character to use
        Returns:
        this, to enable chaining
        Since:
        3.2
      • setValueDelimiter

        public StrSubstitutor setValueDelimiter​(java.lang.String valueDelimiter)
        Deprecated.
        Sets the variable default value delimiter to use.

        The variable default value delimiter is the character or characters that delimit the variable name and the variable default value. This method allows a string variable default value delimiter to be easily set.

        If the valueDelimiter is null or empty string, then the variable default value resolution becomes disabled.

        Parameters:
        valueDelimiter - the variable default value delimiter string to use, may be null or empty
        Returns:
        this, to enable chaining
        Since:
        3.2
      • getVariableResolver

        public StrLookup<?> getVariableResolver()
        Deprecated.
        Gets the VariableResolver that is used to lookup variables.
        Returns:
        the VariableResolver
      • setVariableResolver

        public void setVariableResolver​(StrLookup<?> variableResolver)
        Deprecated.
        Sets the VariableResolver that is used to lookup variables.
        Parameters:
        variableResolver - the VariableResolver
      • isEnableSubstitutionInVariables

        public boolean isEnableSubstitutionInVariables()
        Deprecated.
        Returns a flag whether substitution is done in variable names.
        Returns:
        the substitution in variable names flag
        Since:
        3.0
      • setEnableSubstitutionInVariables

        public void setEnableSubstitutionInVariables​(boolean enableSubstitutionInVariables)
        Deprecated.
        Sets a flag whether substitution is done in variable names. If set to true, the names of variables can contain other variables which are processed first before the original variable is evaluated, e.g. ${jre-${java.version}}. The default value is false.
        Parameters:
        enableSubstitutionInVariables - the new value of the flag
        Since:
        3.0
      • isPreserveEscapes

        public boolean isPreserveEscapes()
        Deprecated.
        Returns the flag controlling whether escapes are preserved during substitution.
        Returns:
        the preserve escape flag
        Since:
        3.5
      • setPreserveEscapes

        public void setPreserveEscapes​(boolean preserveEscapes)
        Deprecated.
        Sets a flag controlling whether escapes are preserved during substitution. If set to true, the escape character is retained during substitution (e.g. $${this-is-escaped} remains $${this-is-escaped}). If set to false, the escape character is removed during substitution (e.g. $${this-is-escaped} becomes ${this-is-escaped}). The default value is false
        Parameters:
        preserveEscapes - true if escapes are to be preserved
        Since:
        3.5