Save This Page
Home » openjdk-7 » javax » xml » bind » annotation » adapters » [javadoc | source]
javax.xml.bind.annotation.adapters
public final class: NormalizedStringAdapter [javadoc | source]
java.lang.Object
   javax.xml.bind.annotation.adapters.XmlAdapter
      javax.xml.bind.annotation.adapters.NormalizedStringAdapter
XmlAdapter to handle xs:normalizedString.

This adapter removes leading and trailing whitespaces, then replace any tab, CR, and LF by a whitespace character ' '.

Method from javax.xml.bind.annotation.adapters.NormalizedStringAdapter Summary:
isWhiteSpaceExceptSpace,   marshal,   unmarshal
Methods from javax.xml.bind.annotation.adapters.XmlAdapter:
marshal,   unmarshal
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from javax.xml.bind.annotation.adapters.NormalizedStringAdapter Detail:
 protected static boolean isWhiteSpaceExceptSpace(char ch) 
    Returns true if the specified char is a white space character but not 0x20.
 public String marshal(String s) 
    No-op. Just return the same string given as the parameter.
 public String unmarshal(String text) 
    Removes leading and trailing whitespaces of the string given as the parameter, then replace any tab, CR, and LF by a whitespace character ' '.