public class StringConverter extends AbstractSingleValueConverter
Well ok, it doesn't actually do any conversion. The converter uses a map to reuse instances. This map is by
default a synchronized WeakHashMap.
String.intern()| Constructor and Description |
|---|
StringConverter() |
StringConverter(java.util.Map map) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
canConvert(java.lang.Class type)
Determines whether the converter can marshall a particular type.
|
java.lang.Object |
fromString(java.lang.String str)
Unmarshals an Object from its single value representation.
|
toStringpublic StringConverter(java.util.Map map)
public StringConverter()
public boolean canConvert(java.lang.Class type)
ConverterMatchercanConvert in interface ConverterMatchercanConvert in class AbstractSingleValueConvertertype - the Class representing the object type to be convertedpublic java.lang.Object fromString(java.lang.String str)
SingleValueConverterfromString in interface SingleValueConverterfromString in class AbstractSingleValueConverterstr - the String with the single value of the ObjectJoe Walnes, http://xstream.codehaus.org/