public class SqlTimestampConverter extends AbstractSingleValueConverter
Timestamp
to a string.Constructor and Description |
---|
SqlTimestampConverter()
Constructs a SqlTimestampConverter using UTC format.
|
SqlTimestampConverter(TimeZone timeZone)
Constructs a SqlTimestampConverter.
|
Modifier and Type | Method and Description |
---|---|
boolean |
canConvert(Class type)
Determines whether the converter can marshall a particular type.
|
Object |
fromString(String str)
Unmarshals an Object from its single value representation.
|
String |
toString(Object obj)
Marshals an Object into a single value representation.
|
public SqlTimestampConverter()
public SqlTimestampConverter(TimeZone timeZone)
XStream uses by default UTC as time zone. However, if the resulting XML is used as feed for a data base (like MS
SQL) the server might expect the timestamp to be in local time and does the conversion to UTC on its own. In such
a case you can register an own instance of the SqlTimestamp converter using e.g. TimeZone.getDefault()
.
timeZone
- the time zone used for the formatpublic boolean canConvert(Class type)
ConverterMatcher
canConvert
in interface ConverterMatcher
canConvert
in class AbstractSingleValueConverter
type
- the Class representing the object type to be convertedpublic String toString(Object obj)
SingleValueConverter
toString
in interface SingleValueConverter
toString
in class AbstractSingleValueConverter
obj
- the Object to be convertednull
public Object fromString(String str)
SingleValueConverter
fromString
in interface SingleValueConverter
fromString
in class AbstractSingleValueConverter
str
- the String with the single value of the ObjectCopyright © 2004–2017 XStream. All rights reserved.