Uses of Interface
org.simpleframework.xml.stream.OutputNode

Packages that use OutputNode
org.simpleframework.xml   
org.simpleframework.xml.convert   
org.simpleframework.xml.core   
org.simpleframework.xml.strategy   
org.simpleframework.xml.stream   
 

Uses of OutputNode in org.simpleframework.xml
 

Methods in org.simpleframework.xml with parameters of type OutputNode
 void Serializer.write(Object source, OutputNode root)
          This write method will traverse the provided object checking for field annotations in order to compose the XML data.
 

Uses of OutputNode in org.simpleframework.xml.convert
 

Methods in org.simpleframework.xml.convert with parameters of type OutputNode
 void Converter.write(OutputNode node, T value)
          This write method is used to serialize an object to XML.
 

Method parameters in org.simpleframework.xml.convert with type arguments of type OutputNode
 boolean RegistryStrategy.write(Type type, Object value, NodeMap<OutputNode> node, Map map)
          This is used to serialize a representation of the object value provided.
 boolean AnnotationStrategy.write(Type type, Object value, NodeMap<OutputNode> node, Map map)
          This is used to serialize a representation of the object value provided.
 

Uses of OutputNode in org.simpleframework.xml.core
 

Methods in org.simpleframework.xml.core with parameters of type OutputNode
 void Persister.write(Object source, OutputNode root)
          This write method will traverse the provided object checking for field annotations in order to compose the XML data.
 

Uses of OutputNode in org.simpleframework.xml.strategy
 

Method parameters in org.simpleframework.xml.strategy with type arguments of type OutputNode
 void Visitor.write(Type type, NodeMap<OutputNode> node)
          This is used to intercept an XML element after it is written by the underlying Strategy implementation.
 boolean VisitorStrategy.write(Type type, Object value, NodeMap<OutputNode> node, Map map)
          This method will write with an internal strategy before it has been intercepted by the visitor.
 boolean Strategy.write(Type type, Object value, NodeMap<OutputNode> node, Map map)
          This is used to attach attribute values to the given node map during the serialization process.
 

Uses of OutputNode in org.simpleframework.xml.stream
 

Methods in org.simpleframework.xml.stream that return OutputNode
 OutputNode OutputNode.getChild(String name)
          This is used to create a child element within the element that this object represents.
 OutputNode OutputNode.getParent()
          This is used to acquire the Node that is the parent of this node.
 OutputNode OutputNode.setAttribute(String name, String value)
          This method is used for convenience to add an attribute node to the attribute NodeMap.
static OutputNode NodeBuilder.write(Writer result)
          This is used to create an OutputNode that can be used to write a well formed XML document.
static OutputNode NodeBuilder.write(Writer result, Format format)
          This is used to create an OutputNode that can be used to write a well formed XML document.
 

Methods in org.simpleframework.xml.stream that return types with arguments of type OutputNode
 NodeMap<OutputNode> OutputNode.getAttributes()
          This returns a NodeMap which can be used to add nodes to the element before that element has been committed.
 



Copyright © 2013. All Rights Reserved.