Class NormalizeCharMap.Builder

  • Enclosing class:
    NormalizeCharMap

    public static class NormalizeCharMap.Builder
    extends Object
    Builds an NormalizeCharMap.

    Call add() until you have added all the mappings, then call build() to get a NormalizeCharMap

    WARNING: This API is experimental and might change in incompatible ways in the next release.
    • Constructor Detail

      • Builder

        public Builder()
    • Method Detail

      • add

        public void add​(String match,
                        String replacement)
        Records a replacement to be applied to the input stream. Whenever singleMatch occurs in the input, it will be replaced with replacement.
        Parameters:
        match - input String to be replaced
        replacement - output String
        Throws:
        IllegalArgumentException - if match is the empty string, or was already previously added