Uses of Class
com.thoughtworks.xstream.converters.basic.AbstractSingleValueConverter
-
Packages that use AbstractSingleValueConverter Package Description com.thoughtworks.xstream.converters.basic Converters for common basic types in Java.com.thoughtworks.xstream.converters.enums com.thoughtworks.xstream.converters.extended Extra converters that may not be enabled in XStream by default.com.thoughtworks.xstream.converters.reflection com.thoughtworks.xstream.converters.time Extra converters for the java.time package.com.thoughtworks.xstream.core.util -
-
Uses of AbstractSingleValueConverter in com.thoughtworks.xstream.converters.basic
Subclasses of AbstractSingleValueConverter in com.thoughtworks.xstream.converters.basic Modifier and Type Class Description 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.Byte wrapper to a String.class
DateConverter
Converts aDate
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
ShortConverter
Converts a short primitive or java.lang.Short wrapper to a String.class
StringBufferConverter
Converts the contents of a StringBuffer to XML.class
StringBuilderConverter
Converts the contents of a StringBuilder to XML.class
StringConverter
Converts a String to a String ;).class
URIConverter
Converts a java.net.URI to a string.class
URLConverter
Converts a java.net.URL to a string.class
UUIDConverter
Converts a java.util.UUID to a string. -
Uses of AbstractSingleValueConverter in com.thoughtworks.xstream.converters.enums
Subclasses of AbstractSingleValueConverter in com.thoughtworks.xstream.converters.enums Modifier and Type Class Description class
EnumSingleValueConverter
A single value converter for a special enum type.class
EnumToStringConverter<T extends java.lang.Enum<T>>
A single value converter for a special enum type using its string representation. -
Uses of AbstractSingleValueConverter in com.thoughtworks.xstream.converters.extended
Subclasses of AbstractSingleValueConverter in com.thoughtworks.xstream.converters.extended Modifier and Type Class Description class
AtomicBooleanConverter
Converts an AtomicBoolean type.class
AtomicIntegerConverter
Converts an AtomicInteger type.class
AtomicLongConverter
Converts an AtomicLong type.class
CharsetConverter
Converts a java.nio.charset.Carset to a string.class
CurrencyConverter
Converts a java.util.Currency to String.class
DurationConverter
A Converter for the XML Schema datatype duration and the Java typeDuration
.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
ISO8601DateConverter
A DateConverter conforming to the ISO8601 standard.class
ISO8601GregorianCalendarConverter
A GregorianCalendarConverter conforming to the ISO8601 standard.class
ISO8601SqlTimestampConverter
A SqlTimestampConverter conforming to the ISO8601 standard.class
JavaClassConverter
Converts a java.lang.Class to XML.class
LocaleConverter
Converts a java.util.Locale to a string.class
OptionalDoubleConverter
Converts an AtomicReference type.class
OptionalIntConverter
Converts an AtomicReference type.class
OptionalLongConverter
Converts an AtomicReference type.class
PathConverter
Converts aPath
to string.class
SqlDateConverter
Converts a java.sql.Date to text.class
SqlTimeConverter
Converts a java.sql.Time to text.class
SqlTimestampConverter
Converts aTimestamp
to a string.class
StackTraceElementConverter
Converter for StackTraceElement (the lines of a stack trace) - JDK 1.4+ only.class
TextAttributeConverter
A converter forTextAttribute
constants.class
ToStringConverter
Convenient converter for classes with natural string representation. -
Uses of AbstractSingleValueConverter in com.thoughtworks.xstream.converters.reflection
Subclasses of AbstractSingleValueConverter in com.thoughtworks.xstream.converters.reflection Modifier and Type Class Description class
AbstractAttributedCharacterIteratorAttributeConverter
An abstract converter implementation for constants ofAttributedCharacterIterator.Attribute
and derived types. -
Uses of AbstractSingleValueConverter in com.thoughtworks.xstream.converters.time
Subclasses of AbstractSingleValueConverter in com.thoughtworks.xstream.converters.time Modifier and Type Class Description class
DurationConverter
Converts aDuration
instance to string.class
HijrahDateConverter
Converts aHijrahDate
to a string.class
InstantConverter
Converts aInstant
instance to string.class
JapaneseDateConverter
Converts aJapaneseDate
to a string.class
JapaneseEraConverter
Converts aJapaneseEra
instance to a string using its id.class
LocalDateConverter
Converts aLocalDate
to a string.class
MinguoDateConverter
Converts aMinguoDate
to a string.class
MonthDayConverter
Converts aMonthDay
instance to string.class
PeriodConverter
Converts aPeriod
instance to string.class
ThaiBuddhistDateConverter
Converts aThaiBuddhistDate
to a string.class
YearConverter
Converts aYear
instance to string.class
YearMonthConverter
Converts aYearMonth
instance to string. -
Uses of AbstractSingleValueConverter in com.thoughtworks.xstream.core.util
Subclasses of AbstractSingleValueConverter in com.thoughtworks.xstream.core.util Modifier and Type Class Description class
ISO8601JavaTimeConverter
A converter forGregorianCalendar
conforming to the ISO8601 standard based on java.time.class
ISO8601JodaTimeConverter
A converter forGregorianCalendar
conforming to the ISO8601 standard based on Joda-Time.
-