Nux 1.6

Uses of Class
nux.xom.pool.XOMUtil.Normalizer

Packages that use XOMUtil.Normalizer
nux.xom.pool Efficient and flexible pools and factories for Documents, XQueries, and XSL Transforms, as well as Builders that validate against W3C XML Schemas, DTDs, RELAX NG, Schematron, etc. 
 

Uses of XOMUtil.Normalizer in nux.xom.pool
 

Fields in nux.xom.pool declared as XOMUtil.Normalizer
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().
 


Nux 1.6