Class PersonConverter
- java.lang.Object
-
- it.tidalwave.thesefoolishthings.examples.dci.marshal.xstream.converter.PersonConverter
-
- All Implemented Interfaces:
com.thoughtworks.xstream.converters.Converter
,com.thoughtworks.xstream.converters.ConverterMatcher
public class PersonConverter extends java.lang.Object implements com.thoughtworks.xstream.converters.Converter
The custom converter forPerson
, which is immutable.- Author:
- Fabrizio Giudici
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
PersonConverter.MutablePerson
-
Constructor Summary
Constructors Constructor Description PersonConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canConvert(java.lang.Class type)
void
marshal(java.lang.Object source, com.thoughtworks.xstream.io.HierarchicalStreamWriter writer, com.thoughtworks.xstream.converters.MarshallingContext context)
java.lang.Object
unmarshal(com.thoughtworks.xstream.io.HierarchicalStreamReader reader, com.thoughtworks.xstream.converters.UnmarshallingContext context)
-
-
-
Method Detail
-
marshal
public void marshal(@Nonnull java.lang.Object source, @Nonnull com.thoughtworks.xstream.io.HierarchicalStreamWriter writer, @Nonnull com.thoughtworks.xstream.converters.MarshallingContext context)
- Specified by:
marshal
in interfacecom.thoughtworks.xstream.converters.Converter
-
unmarshal
public java.lang.Object unmarshal(@Nonnull com.thoughtworks.xstream.io.HierarchicalStreamReader reader, @Nonnull com.thoughtworks.xstream.converters.UnmarshallingContext context)
- Specified by:
unmarshal
in interfacecom.thoughtworks.xstream.converters.Converter
-
canConvert
public boolean canConvert(@Nonnull java.lang.Class type)
- Specified by:
canConvert
in interfacecom.thoughtworks.xstream.converters.ConverterMatcher
-
-