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)
ConverterMatchercanConvert in interface ConverterMatchertype - the Class representing the object type to be convertedpublic String toString(Object obj)
SingleValueConvertertoString in interface SingleValueConverterobj - the Object to be convertednullpublic abstract Object fromString(String str)
SingleValueConverterfromString in interface SingleValueConverterstr - the String with the single value of the ObjectCopyright © 2004–2016 XStream. All rights reserved.