static 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 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 XOMUtil.Normalizer |
XOMUtil.Normalizer.REPLACE |
Whitespace normalization replaces each whitespace character in the
string with a ' ' space character.
|
static XOMUtil.Normalizer |
XOMUtil.Normalizer.STRIP |
Whitespace normalization removes strings that consist of
whitespace-only (boundary whitespace), retaining other strings
unchanged.
|
static XOMUtil.Normalizer |
XOMUtil.Normalizer.TRIM |
Whitespace normalization removes leading and trailing whitespaces,
if present, ala String.trim() .
|