| java.lang.Object | |||
| ↳ | com.thoughtworks.xstream.converters.collections.AbstractCollectionConverter | ||
| ↳ | com.thoughtworks.xstream.converters.collections.MapConverter | ||
| ↳ | com.thoughtworks.xstream.converters.collections.TreeMapConverter | ||
Converts a java.util.TreeMap to XML, and serializes the associated java.util.Comparator. The converter assumes that the entries in the XML are already sorted according the comparator.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Determines whether the converter can marshall a particular type.
| |||||||||||
Convert an object to textual data.
| |||||||||||
Convert textual data back into an object.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.thoughtworks.xstream.converters.collections.MapConverter
| |||||||||||
From class
com.thoughtworks.xstream.converters.collections.AbstractCollectionConverter
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
com.thoughtworks.xstream.converters.Converter
| |||||||||||
From interface
com.thoughtworks.xstream.converters.ConverterMatcher
| |||||||||||
Determines whether the converter can marshall a particular type.
| type | the Class representing the object type to be converted |
|---|
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. |
Convert textual data back into an object.
| reader | The stream to read the text from. |
|---|