Package org.apache.xmlrpc.serializer
Interface TypeSerializer
-
- All Known Implementing Classes:
BigDecimalSerializer
,BigIntegerSerializer
,BooleanSerializer
,ByteArraySerializer
,CalendarSerializer
,DateSerializer
,DoubleSerializer
,ExtSerializer
,FloatSerializer
,I1Serializer
,I2Serializer
,I4Serializer
,I8Serializer
,JaxbSerializer
,ListSerializer
,MapSerializer
,NodeSerializer
,NullSerializer
,ObjectArraySerializer
,SerializableSerializer
,StringSerializer
,TypeSerializerImpl
public interface TypeSerializer
ATypeSerializer
is able to write a parameter or result object to the XML RPC request or response.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
write(org.xml.sax.ContentHandler pHandler, java.lang.Object pObject)
Writes the objectpObject
to the SAX handlerpHandler
.
-
-
-
Method Detail
-
write
void write(org.xml.sax.ContentHandler pHandler, java.lang.Object pObject) throws org.xml.sax.SAXException
Writes the objectpObject
to the SAX handlerpHandler
.- Parameters:
pHandler
- The destination handler.pObject
- The object being written.- Throws:
org.xml.sax.SAXException
- Writing the object failed.
-
-