Uses of Interface
org.xmlpull.v1.XmlSerializer
-
Packages that use XmlSerializer Package Description org.xmlpull.mxp1 Contains XPP3 implementation of XMLPULL V1 API.org.xmlpull.mxp1_serializer org.xmlpull.v1 org.xmlpull.v1.builder This package defines API modeled after XML Information Set for building incrmentally XML trees from events streamed from pull parser (user can start navigating tree before whole XML input was parsed!) and has an unique ability to bypass tree building for selected sub trees to work directly with underlying event stream.org.xmlpull.v1.builder.impl org.xmlpull.v1.util org.xmlpull.v1.wrapper org.xmlpull.v1.wrapper.classic -
-
Uses of XmlSerializer in org.xmlpull.mxp1
Methods in org.xmlpull.mxp1 that return XmlSerializer Modifier and Type Method Description XmlSerializerMXParserFactory. newSerializer() -
Uses of XmlSerializer in org.xmlpull.mxp1_serializer
Classes in org.xmlpull.mxp1_serializer that implement XmlSerializer Modifier and Type Class Description classMXSerializerImplementation of XmlSerializer interface from XmlPull V1 API.Methods in org.xmlpull.mxp1_serializer that return XmlSerializer Modifier and Type Method Description XmlSerializerMXSerializer. attribute(String namespace, String name, String value)XmlSerializerMXSerializer. endTag(String namespace, String name)XmlSerializerMXSerializer. startTag(String namespace, String name)XmlSerializerMXSerializer. text(char[] buf, int start, int len)XmlSerializerMXSerializer. text(String text) -
Uses of XmlSerializer in org.xmlpull.v1
Methods in org.xmlpull.v1 that return XmlSerializer Modifier and Type Method Description XmlSerializerXmlSerializer. attribute(String namespace, String name, String value)Write an attribute.XmlSerializerXmlSerializer. endTag(String namespace, String name)Write end tag.XmlSerializerXmlPullParserFactory. newSerializer()Creates a new instance of a XML Serializer.XmlSerializerXmlSerializer. startTag(String namespace, String name)Writes a start tag with the given namespace and name.XmlSerializerXmlSerializer. text(char[] buf, int start, int len)Writes text, where special XML chars are escaped automaticallyXmlSerializerXmlSerializer. text(String text)Writes text, where special XML chars are escaped automatically -
Uses of XmlSerializer in org.xmlpull.v1.builder
Methods in org.xmlpull.v1.builder with parameters of type XmlSerializer Modifier and Type Method Description abstract voidXmlInfosetBuilder. serialize(Object item, XmlSerializer serializer)Serialize XML infoset item including serializing of children.voidXmlSerializable. serialize(XmlSerializer ser)abstract voidXmlInfosetBuilder. serializeEndTag(XmlElement el, XmlSerializer ser)Write XML end tag with information provided in XML element.abstract voidXmlInfosetBuilder. serializeItem(Object item, XmlSerializer serializer)Serialize XML infoset item without serializing any of children.abstract voidXmlInfosetBuilder. serializeStartTag(XmlElement el, XmlSerializer ser)Write XML start tag with information provided in XML element. -
Uses of XmlSerializer in org.xmlpull.v1.builder.impl
Methods in org.xmlpull.v1.builder.impl with parameters of type XmlSerializer Modifier and Type Method Description voidXmlInfosetBuilderImpl. serialize(Object item, XmlSerializer serializer)voidXmlInfosetBuilderImpl. serializeEndTag(XmlElement el, XmlSerializer ser)voidXmlInfosetBuilderImpl. serializeItem(Object item, XmlSerializer ser)voidXmlInfosetBuilderImpl. serializeStartTag(XmlElement el, XmlSerializer ser) -
Uses of XmlSerializer in org.xmlpull.v1.util
Methods in org.xmlpull.v1.util with parameters of type XmlSerializer Modifier and Type Method Description static voidXmlPullUtil. writeSimpleElement(XmlSerializer serializer, String namespace, String elementName, String elementText)Writes a simple element such asjohndoe . -
Uses of XmlSerializer in org.xmlpull.v1.wrapper
Subinterfaces of XmlSerializer in org.xmlpull.v1.wrapper Modifier and Type Interface Description interfaceXmlSerializerWrapperExtensions to XmlSerialzier interfaceMethods in org.xmlpull.v1.wrapper with parameters of type XmlSerializer Modifier and Type Method Description XmlSerializerWrapperXmlPullWrapperFactory. newSerializerWrapper(XmlSerializer xs) -
Uses of XmlSerializer in org.xmlpull.v1.wrapper.classic
Classes in org.xmlpull.v1.wrapper.classic that implement XmlSerializer Modifier and Type Class Description classStaticXmlSerializerWrapperThis class seemlesly extends exisiting serialzier implementation by adding new methods (provided by XmlPullUtil) and delegating exisiting methods to parser implementation.classXmlSerializerDelegateThis is simple class that implements serializer interface by delegating all calls to actual serialzier implementation passed in constructor.Fields in org.xmlpull.v1.wrapper.classic declared as XmlSerializer Modifier and Type Field Description protected XmlSerializerXmlSerializerDelegate. xsMethods in org.xmlpull.v1.wrapper.classic that return XmlSerializer Modifier and Type Method Description XmlSerializerXmlSerializerDelegate. attribute(String namespace, String name, String value)XmlSerializerXmlSerializerDelegate. endTag(String namespace, String name)XmlSerializerXmlSerializerDelegate. startTag(String namespace, String name)XmlSerializerXmlSerializerDelegate. text(char[] buf, int start, int len)XmlSerializerXmlSerializerDelegate. text(String text)Constructors in org.xmlpull.v1.wrapper.classic with parameters of type XmlSerializer Constructor Description StaticXmlSerializerWrapper(XmlSerializer xs, XmlPullWrapperFactory wf)XmlSerializerDelegate(XmlSerializer serializer)
-