|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Mapper | |
com.thoughtworks.xstream | |
com.thoughtworks.xstream.alias | |
com.thoughtworks.xstream.converters.collections | Converters for collection objects that write their items as nested elements, such as arrays, Lists, Sets and Maps. |
com.thoughtworks.xstream.converters.enums | |
com.thoughtworks.xstream.converters.extended | Extra converters that are not enabled in XStream by default. |
com.thoughtworks.xstream.converters.javabean | |
com.thoughtworks.xstream.converters.reflection | |
com.thoughtworks.xstream.mapper |
Uses of Mapper in com.thoughtworks.xstream |
Methods in com.thoughtworks.xstream that return Mapper | |
Mapper |
XStream.getMapper()
Retrieve the Mapper . |
Methods in com.thoughtworks.xstream with parameters of type Mapper | |
java.lang.Object |
MarshallingStrategy.unmarshal(java.lang.Object root,
HierarchicalStreamReader reader,
DataHolder dataHolder,
ConverterLookup converterLookup,
Mapper mapper)
|
void |
MarshallingStrategy.marshal(HierarchicalStreamWriter writer,
java.lang.Object obj,
ConverterLookup converterLookup,
Mapper mapper,
DataHolder dataHolder)
|
Constructors in com.thoughtworks.xstream with parameters of type Mapper | |
XStream(ReflectionProvider reflectionProvider,
Mapper mapper,
HierarchicalStreamDriver driver)
Constructs an XStream with a special HierarchicalStreamDriver and ReflectionProvider and additionally with a prepared Mapper . |
Uses of Mapper in com.thoughtworks.xstream.alias |
Subinterfaces of Mapper in com.thoughtworks.xstream.alias | |
interface |
ClassMapper
Deprecated. As of 1.2, use Mapper |
Uses of Mapper in com.thoughtworks.xstream.converters.collections |
Methods in com.thoughtworks.xstream.converters.collections that return Mapper | |
protected Mapper |
AbstractCollectionConverter.mapper()
|
Constructors in com.thoughtworks.xstream.converters.collections with parameters of type Mapper | |
AbstractCollectionConverter(Mapper mapper)
|
|
ArrayConverter(Mapper mapper)
|
|
CollectionConverter(Mapper mapper)
|
|
MapConverter(Mapper mapper)
|
|
TreeMapConverter(Mapper mapper)
|
|
TreeSetConverter(Mapper mapper)
|
Uses of Mapper in com.thoughtworks.xstream.converters.enums |
Constructors in com.thoughtworks.xstream.converters.enums with parameters of type Mapper | |
EnumMapConverter(Mapper mapper)
|
|
EnumSetConverter(Mapper mapper)
|
Uses of Mapper in com.thoughtworks.xstream.converters.extended |
Constructors in com.thoughtworks.xstream.converters.extended with parameters of type Mapper | |
DynamicProxyConverter(Mapper mapper)
|
|
DynamicProxyConverter(Mapper mapper,
java.lang.ClassLoader classLoader)
|
|
SubjectConverter(Mapper mapper)
|
Uses of Mapper in com.thoughtworks.xstream.converters.javabean |
Constructors in com.thoughtworks.xstream.converters.javabean with parameters of type Mapper | |
JavaBeanConverter(Mapper mapper,
java.lang.String classAttributeIdentifier)
|
Uses of Mapper in com.thoughtworks.xstream.converters.reflection |
Fields in com.thoughtworks.xstream.converters.reflection declared as Mapper | |
protected Mapper |
AbstractReflectionConverter.mapper
|
Constructors in com.thoughtworks.xstream.converters.reflection with parameters of type Mapper | |
AbstractReflectionConverter(Mapper mapper,
ReflectionProvider reflectionProvider)
|
|
CGLIBEnhancedConverter(Mapper mapper,
ReflectionProvider reflectionProvider)
|
|
SerializableConverter(Mapper mapper,
ReflectionProvider reflectionProvider)
|
|
ExternalizableConverter(Mapper mapper)
|
|
ReflectionConverter(Mapper mapper,
ReflectionProvider reflectionProvider)
|
Uses of Mapper in com.thoughtworks.xstream.mapper |
Classes in com.thoughtworks.xstream.mapper that implement Mapper | |
class |
AbstractXmlFriendlyMapper
Mapper that ensures that all names in the serialization stream are XML friendly. |
class |
ArrayMapper
Mapper that detects arrays and changes the name so it can identified as an array (for example Foo[] gets serialized as foo-array). |
class |
AttributeAliasingMapper
Mapper that allows aliasing of attribute names. |
class |
AttributeMapper
Mapper that allows the usage of attributes for fields and corresponding types or specified arbitrary types. |
class |
CachingMapper
Mapper that caches which names map to which classes. |
class |
CGLIBMapper
Mapper that detects proxies generated by the CGLIB enhancer. |
class |
ClassAliasingMapper
Mapper that allows a fully qualified class name to be replaced with a shorter alias. |
class |
DefaultImplementationsMapper
Mapper that resolves default implementations of classes. |
class |
DefaultMapper
Default mapper implementation with 'vanilla' functionality. |
class |
DynamicProxyMapper
Mapper for handling special cases of aliasing dynamic proxies. |
class |
EnumMapper
Mapper that handles the special case of polymorphic enums in Java 1.5. |
class |
FieldAliasingMapper
Mapper that allows a field of a specific class to be replaced with a shorter alias, or omitted entirely. |
class |
ImmutableTypesMapper
Mapper that specifies which types are basic immutable types. |
class |
ImplicitCollectionMapper
|
class |
MapperWrapper
|
class |
OuterClassMapper
Mapper that uses a more meaningful alias for the field in an inner class (this$0) that refers to the outer class. |
class |
XmlFriendlyMapper
Mapper that ensures that all names in the serialization stream are XML friendly. |
class |
XStream11XmlFriendlyMapper
Mapper that ensures that all names in the serialization stream are read in an XML friendly way. |
Methods in com.thoughtworks.xstream.mapper that return Mapper | |
Mapper |
Mapper.lookupMapperOfType(java.lang.Class type)
|
Mapper |
MapperWrapper.lookupMapperOfType(java.lang.Class type)
|
Mapper |
DefaultMapper.lookupMapperOfType(java.lang.Class type)
|
Constructors in com.thoughtworks.xstream.mapper with parameters of type Mapper | |
ClassAliasingMapper(Mapper wrapped)
|
|
MapperWrapper(Mapper wrapped)
|
|
FieldAliasingMapper(Mapper wrapped)
|
|
AttributeAliasingMapper(Mapper wrapped)
|
|
AttributeMapper(Mapper wrapped)
|
|
AttributeMapper(Mapper wrapped,
ConverterLookup converterLookup)
|
|
DefaultImplementationsMapper(Mapper wrapped)
|
|
ImmutableTypesMapper(Mapper wrapped)
|
|
ImplicitCollectionMapper(Mapper wrapped)
|
|
AbstractXmlFriendlyMapper(Mapper wrapped)
|
|
ArrayMapper(Mapper wrapped)
|
|
CGLIBMapper(Mapper wrapped)
|
|
CGLIBMapper(Mapper wrapped,
java.lang.String alias)
|
|
CachingMapper(Mapper wrapped)
|
|
DynamicProxyMapper(Mapper wrapped)
|
|
DynamicProxyMapper(Mapper wrapped,
java.lang.String alias)
|
|
EnumMapper(Mapper wrapped)
|
|
OuterClassMapper(Mapper wrapped)
|
|
OuterClassMapper(Mapper wrapped,
java.lang.String alias)
|
|
XStream11XmlFriendlyMapper(Mapper wrapped)
|
|
XmlFriendlyMapper(Mapper wrapped)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |