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.ConverterThe custom converter forPerson, which is immutable.- Author:
- Fabrizio Giudici
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPersonConverter.MutablePerson
-
Constructor Summary
Constructors Constructor Description PersonConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanConvert(java.lang.Class type)voidmarshal(java.lang.Object source, com.thoughtworks.xstream.io.HierarchicalStreamWriter writer, com.thoughtworks.xstream.converters.MarshallingContext context)java.lang.Objectunmarshal(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:
marshalin 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:
unmarshalin interfacecom.thoughtworks.xstream.converters.Converter
-
canConvert
public boolean canConvert(@Nonnull java.lang.Class type)- Specified by:
canConvertin interfacecom.thoughtworks.xstream.converters.ConverterMatcher
-
-