- java.lang.Object
-
- javax.xml.bind.annotation.adapters.XmlAdapter<String,String>
-
- javax.xml.bind.annotation.adapters.NormalizedStringAdapter
-
public final class NormalizedStringAdapter extends XmlAdapter<String,String>
XmlAdapter
处理xs:normalizedString
。用空格字符替换任何标签,CR和LF,如the whitespace facet 'replace'所规定
- 从以下版本开始:
- 1.6,JAXB 2.0
-
-
构造方法摘要
构造方法 Constructor 描述 NormalizedStringAdapter()
-
-
-
方法详细信息
-
unmarshal
public String unmarshal(String text)
按照 the whitespace facet 'replace'中的规定,将任何标签,CR和LF替换为空格字符“'- Specified by:
-
unmarshal
在XmlAdapter<String,String>
- 参数
-
text
- 要转换的值。 可以为null。
-
marshal
public String marshal(String s)
无操作。 只返回与参数给出的相同的字符串。- Specified by:
-
marshal
在XmlAdapter<String,String>
- 参数
-
s
- 要s
的价值。 可以为null。
-
isWhiteSpaceExceptSpace
protected static boolean isWhiteSpaceExceptSpace(char ch)
如果指定的字符是空白字符而不是0x20,则返回true。
-
-