|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use InputNode | |
|---|---|
| org.simpleframework.xml | |
| org.simpleframework.xml.convert | |
| org.simpleframework.xml.core | |
| org.simpleframework.xml.strategy | |
| org.simpleframework.xml.stream | |
| Uses of InputNode in org.simpleframework.xml |
|---|
| Methods in org.simpleframework.xml with parameters of type InputNode | ||
|---|---|---|
|
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. |
|
|
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. |
|
|
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. |
|
|
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 | |
|---|---|
T |
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 | |
|---|---|
Value |
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. |
Value |
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. |
| Uses of InputNode in org.simpleframework.xml.core |
|---|
| Methods in org.simpleframework.xml.core with parameters of type InputNode | ||
|---|---|---|
|
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. |
|
|
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. |
|
|
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. |
|
|
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 | |
|---|---|
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. |
Value |
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. |
Value |
Strategy.read(Type type,
NodeMap<InputNode> node,
Map map)
This is used to resolve and load a class for the given element. |
| Uses of InputNode in org.simpleframework.xml.stream |
|---|
| Methods in org.simpleframework.xml.stream that return InputNode | |
|---|---|
InputNode |
InputNode.getAttribute(String name)
Provides an attribute from the element represented. |
InputNode |
InputNode.getNext()
This returns the next child element within this element if one exists. |
InputNode |
InputNode.getNext(String name)
This returns the next child in this element if that child has the name provided. |
InputNode |
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 | |
|---|---|
NodeMap<InputNode> |
InputNode.getAttributes()
This returns a map of the attributes contained within the element. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||