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

Packages that use InputNode
  • Uses of InputNode in org.simpleframework.xml

    Methods in org.simpleframework.xml with parameters of type InputNode
    Modifier and Type
    Method
    Description
    <T> T
    Serializer.read(Class<? extends T> type, InputNode source)
    This read method will read the contents of the XML document from the provided source and convert it into an object of the specified type.
    <T> T
    Serializer.read(Class<? extends T> type, InputNode source, boolean strict)
    This read method will read the contents of the XML document from the provided source and convert it into an object of the specified type.
    <T> T
    Serializer.read(T value, InputNode source)
    This read method will read the contents of the XML document from the provided source and populate the object with the values deserialized.
    <T> T
    Serializer.read(T value, InputNode source, boolean strict)
    This read method will read the contents of the XML document from the provided source and populate the object with the values deserialized.
    boolean
    Serializer.validate(Class type, InputNode source)
    This validate method will validate the contents of the XML document against the specified XML class schema.
    boolean
    Serializer.validate(Class type, InputNode source, boolean strict)
    This validate method will validate the contents of the XML document against the specified XML class schema.
  • Uses of InputNode in org.simpleframework.xml.convert

    Methods in org.simpleframework.xml.convert with parameters of type InputNode
    Modifier and Type
    Method
    Description
    Converter.read(InputNode node)
    This read method is used to deserialize an object from the source XML.
    Method parameters in org.simpleframework.xml.convert with type arguments of type InputNode
    Modifier and Type
    Method
    Description
    AnnotationStrategy.read(Type type, NodeMap<InputNode> node, Map map)
    This is used to read the Value which will be used to represent the deserialized object.
    RegistryStrategy.read(Type type, NodeMap<InputNode> node, Map map)
    This is used to read the Value which will be used to represent the deserialized object.
  • Uses of InputNode in org.simpleframework.xml.core

    Methods in org.simpleframework.xml.core with parameters of type InputNode
    Modifier and Type
    Method
    Description
    <T> T
    Persister.read(Class<? extends T> type, InputNode source)
    This read method will read the contents of the XML document from the provided source and convert it into an object of the specified type.
    <T> T
    Persister.read(Class<? extends T> type, InputNode node, boolean strict)
    This read method will read the contents of the XML document from the provided source and convert it into an object of the specified type.
    <T> T
    Persister.read(T value, InputNode source)
    This read method will read the contents of the XML document from the provided source and populate the object with the values deserialized.
    <T> T
    Persister.read(T value, InputNode node, boolean strict)
    This read method will read the contents of the XML document from the provided source and populate the object with the values deserialized.
    boolean
    Persister.validate(Class type, InputNode source)
    This validate method will validate the contents of the XML document against the specified XML class schema.
    boolean
    Persister.validate(Class type, InputNode node, boolean strict)
    This validate method will validate the contents of the XML document against the specified XML class schema.
  • Uses of InputNode in org.simpleframework.xml.strategy

    Method parameters in org.simpleframework.xml.strategy with type arguments of type InputNode
    Modifier and Type
    Method
    Description
    Strategy.read(Type type, NodeMap<InputNode> node, Map map)
    This is used to resolve and load a class for the given element.
    void
    Visitor.read(Type type, NodeMap<InputNode> node)
    This is used to intercept an XML element before it is read by the underlying Strategy implementation.
    VisitorStrategy.read(Type type, NodeMap<InputNode> node, Map map)
    This method will read with an internal strategy after it has been intercepted by the visitor.
  • Uses of InputNode in org.simpleframework.xml.stream

    Modifier and Type
    Method
    Description
    InputNode.getAttribute(String name)
    Provides an attribute from the element represented.
    InputNode.getNext()
    This returns the next child element within this element if one exists.
    InputNode.getNext(String name)
    This returns the next child in this element if that child has the name provided.
    InputNode.getParent()
    This is used to acquire the Node that is the parent of this node.
    static InputNode
    NodeBuilder.read(InputStream source)
    This is used to create an InputNode that can be used to read XML from the specified stream.
    static InputNode
    NodeBuilder.read(Reader source)
    This is used to create an InputNode that can be used to read XML from the specified reader.
    Methods in org.simpleframework.xml.stream that return types with arguments of type InputNode
    Modifier and Type
    Method
    Description
    InputNode.getAttributes()
    This returns a map of the attributes contained within the element.