Package | Description |
---|---|
net.sf.practicalxml.converter |
This package contains classes to convert between XML and a variety of
other formats.
|
net.sf.practicalxml.converter.bean |
This package contains classes to convert Java objects to and from XML.
|
Modifier and Type | Method and Description |
---|---|
static <T> T |
BeanConverter.convertToJava(Document dom,
Class<T> klass,
Xml2BeanOptions... options)
Creates a new Java object from the root of the passed
Document
. |
static <T> T |
BeanConverter.convertToJava(Element root,
Class<T> klass,
Xml2BeanOptions... options)
Creates a new Java object from the the passed
Element . |
Modifier and Type | Method and Description |
---|---|
static Xml2BeanOptions |
Xml2BeanOptions.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Xml2BeanOptions[] |
Xml2BeanOptions.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
Xml2BeanConverter(Xml2BeanOptions... options) |