com.thoughtworks.xstream.mapper
Class DefaultImplementationsMapper
java.lang.Object
com.thoughtworks.xstream.mapper.MapperWrapper
com.thoughtworks.xstream.mapper.DefaultImplementationsMapper
- All Implemented Interfaces:
- Mapper
public class DefaultImplementationsMapper
- extends MapperWrapper
Mapper that resolves default implementations of classes. For example,
mapper.serializedClass(ArrayList.class) will return java.util.List. Calling
mapper.defaultImplementationOf(List.class) will return ArrayList.
- Author:
- Joe Walnes
Methods inherited from class com.thoughtworks.xstream.mapper.MapperWrapper |
aliasForAttribute, aliasForAttribute, aliasForSystemAttribute, attributeForAlias, attributeForAlias, getConverterFromAttribute, getConverterFromAttribute, getConverterFromAttribute, getConverterFromItemType, getConverterFromItemType, getConverterFromItemType, getFieldNameForItemTypeAndName, getImplicitCollectionDefForFieldName, getItemTypeForItemFieldName, getLocalConverter, isImmutableValueType, lookupMapperOfType, realClass, realMember, serializedMember, shouldSerializeMember |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DefaultImplementationsMapper
public DefaultImplementationsMapper(Mapper wrapped)
addDefaults
protected void addDefaults()
addDefaultImplementation
public void addDefaultImplementation(Class defaultImplementation,
Class ofType)
serializedClass
public String serializedClass(Class type)
- Description copied from interface:
Mapper
- How a class name should be represented in its serialized form.
- Specified by:
serializedClass
in interface Mapper
- Overrides:
serializedClass
in class MapperWrapper
defaultImplementationOf
public Class defaultImplementationOf(Class type)
- Specified by:
defaultImplementationOf
in interface Mapper
- Overrides:
defaultImplementationOf
in class MapperWrapper
Copyright © 2004-2014 XStream. All Rights Reserved.