|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Converter in com.thoughtworks.xstream |
Methods in com.thoughtworks.xstream with parameters of type Converter | |
void |
XStream.changeDefaultConverter(Converter defaultConverter)
|
void |
XStream.registerConverter(Converter converter)
|
Constructors in com.thoughtworks.xstream with parameters of type Converter | |
XStream(Converter defaultConverter)
|
|
XStream(ReflectionProvider reflectionProvider,
ClassMapper classMapper,
HierarchicalStreamDriver driver,
java.lang.String classAttributeIdentifier,
Converter defaultConverter)
|
Uses of Converter in com.thoughtworks.xstream.converters |
Methods in com.thoughtworks.xstream.converters that return Converter | |
Converter |
ConverterLookup.lookupConverterForType(java.lang.Class type)
Lookup a converter for a specific type. |
Converter |
ConverterLookup.defaultConverter()
Lookup the default converter. |
Uses of Converter in com.thoughtworks.xstream.converters.basic |
Classes in com.thoughtworks.xstream.converters.basic that implement Converter | |
class |
AbstractBasicConverter
Base helper class for converters that can store the state of an object as a single String. |
class |
BigDecimalConverter
Converts a java.math.BigDecimal to a String, retaining its precision. |
class |
BigIntegerConverter
Converts a java.math.BigInteger to a String. |
class |
BooleanConverter
Converts a boolean primitive or java.lang.Boolean wrapper to a String. |
class |
ByteConverter
Converts a byte primitive or java.lang.Byre wrapper to a String. |
class |
CharConverter
Converts a char primitive or java.lang.Character wrapper to a String. |
class |
DateConverter
Converts a java.util.Date to a String as a date format, retaining precision down to milliseconds. |
class |
DoubleConverter
Converts a double primitive or java.lang.Double wrapper to a String. |
class |
FloatConverter
Converts a float primitive or java.lang.Float wrapper to a String. |
class |
IntConverter
Converts an int primitive or java.lang.Integer wrapper to a String. |
class |
LongConverter
Converts a long primitive or java.lang.Long wrapper to a String. |
class |
NullConverter
Special converter to signify nulls at the root level. |
class |
ShortConverter
Converts a short primitive or java.lang.Short wrapper to a String. |
class |
StringBufferConverter
Converts the contents of a StringBuffer to XML. |
class |
StringConverter
Converts a String to a String ;). |
class |
URLConverter
Converts a java.net.URL to a string. |
Uses of Converter in com.thoughtworks.xstream.converters.collections |
Classes in com.thoughtworks.xstream.converters.collections that implement Converter | |
class |
AbstractCollectionConverter
Base helper class for converters that need to handle collections of items (arrays, Lists, Maps, etc). |
class |
ArrayConverter
Converts an array of objects or primitives to XML, using a nested child element for each item. |
class |
BitSetConverter
Converts a java.util.BitSet to XML, as a compact comma delimited list of ones and zeros. |
class |
CharArrayConverter
Converts a char[] to XML, storing the contents as a single String. |
class |
CollectionConverter
Converts most common Collections (Lists and Sets) to XML, specifying a nested element for each item. |
class |
MapConverter
Converts a java.util.Map to XML, specifying an 'entry' element with 'key' and 'value' children. |
class |
PropertiesConverter
Special converter for java.util.Properties that stores properties in a more compact form than java.util.Map. |
class |
TreeMapConverter
Converts a java.util.TreeMap to XML, and serializes the associated java.util.Comparator. |
class |
TreeSetConverter
Converts a java.util.TreeSet to XML, and serializes the associated java.util.Comparator. |
Uses of Converter in com.thoughtworks.xstream.converters.extended |
Classes in com.thoughtworks.xstream.converters.extended that implement Converter | |
class |
ColorConverter
Converts a java.awt.Color to XML, using four nested elements: red, green, blue, alpha. |
class |
CurrencyConverter
Converts a java.util.Currency to String. |
class |
DynamicProxyConverter
Converts a dynamic proxy to XML, storing the implemented interfaces and handler. |
class |
EncodedByteArrayConverter
Converts a byte array to a single Base64 encoding string. |
class |
FileConverter
This converter will take care of storing and retrieving File with either an absolute path OR a relative path depending on how they were created. |
class |
FontConverter
|
class |
GregorianCalendarConverter
Converts a java.util.GregorianCalendar to XML. |
class |
ISO8601DateConverter
A DateConverter conforming to the ISO8601 standard. |
class |
JavaClassConverter
Converts a java.lang.Class to XML. |
class |
JavaMethodConverter
Converts a java.lang.reflect.Method to XML. |
class |
LocaleConverter
Converts a java.util.Locale to a string. |
class |
RegexPatternConverter
Ensures java.util.regex.Pattern is compiled upon deserialization. |
class |
SqlDateConverter
Converts a java.sql.Date to text. |
class |
SqlTimeConverter
Converts a java.sql.Time to text. |
class |
SqlTimestampConverter
Converts a java.sql.Timestamp to text. |
class |
StackTraceElementConverter
Converter for StackTraceElement (the lines of a stack trace) - JDK 1.4+ only. |
class |
ThrowableConverter
Converter for Throwable (and Exception) that retains stack trace, for JDK1.4 only. |
Constructors in com.thoughtworks.xstream.converters.extended with parameters of type Converter | |
ThrowableConverter(Converter defaultConverter)
|
|
RegexPatternConverter(Converter defaultConverter)
|
Uses of Converter in com.thoughtworks.xstream.converters.reflection |
Classes in com.thoughtworks.xstream.converters.reflection that implement Converter | |
class |
ExternalizableConverter
Converts any object that implements the java.io.Externalizable interface, allowing compatability with native Java serialization. |
class |
ReflectionConverter
|
class |
SerializableConverter
Emulates the mechanism used by standard Java Serialization for classes that implement java.io.Serializable AND implement a custom readObject()/writeObject() method. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |