public abstract class AbstractSingleValueConverter extends Object implements SingleValueConverter
SingleValueConverter
.
Subclasses should implement methods canConvert(Class) and fromString(String) for the conversion.
SingleValueConverter
Constructor and Description |
---|
AbstractSingleValueConverter() |
Modifier and Type | Method and Description |
---|---|
abstract boolean |
canConvert(Class type)
Determines whether the converter can marshall a particular type.
|
abstract 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 abstract boolean canConvert(Class type)
ConverterMatcher
canConvert
in interface ConverterMatcher
type
- the Class representing the object type to be convertedpublic String toString(Object obj)
SingleValueConverter
toString
in interface SingleValueConverter
obj
- the Object to be convertednull
public abstract Object fromString(String str)
SingleValueConverter
fromString
in interface SingleValueConverter
str
- the String with the single value of the ObjectCopyright © 2004–2017 XStream. All rights reserved.