public class BooleanAdapter extends XmlAdapter<java.lang.String,java.lang.Boolean>
Constructor and Description |
---|
BooleanAdapter() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
marshal(java.lang.Boolean value)
Convert a bound type to a value type.
|
java.lang.Boolean |
unmarshal(java.lang.String value)
Convert a value type to a bound type.
|
public java.lang.Boolean unmarshal(java.lang.String value) throws java.lang.Exception
XmlAdapter
unmarshal
in class XmlAdapter<java.lang.String,java.lang.Boolean>
value
- The value to be converted. Can be null.java.lang.Exception
- if there's an error during the conversion. The caller is responsible for
reporting the error to the user through ValidationEventHandler
.public java.lang.String marshal(java.lang.Boolean value) throws java.lang.Exception
XmlAdapter
marshal
in class XmlAdapter<java.lang.String,java.lang.Boolean>
value
- The value to be convereted. Can be null.java.lang.Exception
- if there's an error during the conversion. The caller is responsible for
reporting the error to the user through ValidationEventHandler
.