java.lang.Object | |
↳ | com.thoughtworks.xstream.converters.basic.CharConverter |
Converts a char primitive or java.lang.Character wrapper to a String. If char is \0 the representing String is empty.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Determines whether the converter can marshall a particular type.
| |||||||||||
Unmarshals an Object from its single value representation.
| |||||||||||
Convert an object to textual data.
| |||||||||||
Marshals an Object into a single value representation.
| |||||||||||
Convert textual data back into an object.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
Determines whether the converter can marshall a particular type.
type | the Class representing the object type to be converted |
---|
Unmarshals an Object from its single value representation.
str | the String with the single value of the Object |
---|
Convert an object to textual data.
source | The object to be marshalled. |
---|---|
writer | A stream to write to. |
context | A context that allows nested objects to be processed by XStream. |
Marshals an Object into a single value representation.
obj | the Object to be converted |
---|
null
Convert textual data back into an object.
reader | The stream to read the text from. |
---|