Interface SubstituteStringEntry.Builder

    • Method Detail

      • source

        SubstituteStringEntry.Builder source​(String source)

        The key to modify

        Parameters:
        source - The key to modify
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • from

        SubstituteStringEntry.Builder from​(String from)

        The regular expression string to be replaced. Special regex characters such as [ and ] must be escaped using \\ when using double quotes and with \ when using single quotes. For more information, see Class Pattern on the Oracle web site.

        Parameters:
        from - The regular expression string to be replaced. Special regex characters such as [ and ] must be escaped using \\ when using double quotes and with \ when using single quotes. For more information, see Class Pattern on the Oracle web site.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • to

        SubstituteStringEntry.Builder to​(String to)

        The string to be substituted for each match of from

        Parameters:
        to - The string to be substituted for each match of from
        Returns:
        Returns a reference to this object so that method calls can be chained together.