- java.lang.Object
-
- javax.xml.bind.annotation.adapters.XmlAdapter<String,String>
-
- javax.xml.bind.annotation.adapters.CollapsedStringAdapter
-
public class CollapsedStringAdapter extends XmlAdapter<String,String>
内置XmlAdapter
处理xs:token
及其派生类型。此适配器删除前导和尾随空格,然后通过单个空格字符“'截断任何标签,CR,LF和SP序列。
- 从以下版本开始:
- 1.6,JAXB 2.0
-
-
方法详细信息
-
unmarshal
public String unmarshal(String text)
删除作为参数给出的字符串的前导和尾随空格,然后通过单个空格字符“'截断任何标签,CR,LF和SP序列。- Specified by:
-
unmarshal
在XmlAdapter<String,String>
- 参数
-
text
- 要转换的值。 可以为null。
-
marshal
public String marshal(String s)
无操作。 只返回与参数给出的相同的字符串。- Specified by:
-
marshal
在XmlAdapter<String,String>
- 参数
-
s
- 要s
的价值。 可以为null。
-
isWhiteSpace
protected static boolean isWhiteSpace(char ch)
如果指定的字符是空白字符,则返回true。
-
-