Uses of Class
net.datenwerke.eximport.nuxlets.XOMUtil.Normalizer

Packages that use XOMUtil.Normalizer
Package
Description
 
  • Uses of XOMUtil.Normalizer in net.datenwerke.eximport.nuxlets

    Modifier and Type
    Field
    Description
    static final XOMUtil.Normalizer
    XOMUtil.Normalizer.COLLAPSE
    Whitespace normalization replaces each sequence of whitespace in the string by a single ' ' space character; Further, leading and trailing whitespaces are removed, if present, ala String.trim().
    static final XOMUtil.Normalizer
    XOMUtil.Normalizer.PRESERVE
    Whitespace normalization returns the string unchanged; hence indicates no whitespace normalization should be performed at all; This is typically the default for applications.
    static final XOMUtil.Normalizer
    XOMUtil.Normalizer.REPLACE
    Whitespace normalization replaces each whitespace character in the string with a ' ' space character.
    static final XOMUtil.Normalizer
    XOMUtil.Normalizer.STRIP
    Whitespace normalization removes strings that consist of whitespace-only (boundary whitespace), retaining other strings unchanged.
    static final XOMUtil.Normalizer
    XOMUtil.Normalizer.TRIM
    Whitespace normalization removes leading and trailing whitespaces, if present, ala String.trim().