Package | Description |
---|---|
javax.xml.bind |
Provides a runtime binding framework for client applications including
unmarshalling, marshalling, and validation capabilities.
|
javax.xml.bind.helpers |
JAXB Provider Use Only: Provides partial default implementations for
some of the javax.xml.bind interfaces.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
Unmarshaller.getProperty(java.lang.String name)
Get the particular property in the underlying implementation of
Unmarshaller.
|
java.lang.Object |
Validator.getProperty(java.lang.String name)
Deprecated.
since JAXB2.0
|
abstract java.lang.Object |
Binder.getProperty(java.lang.String name)
Get the particular property in the underlying implementation of
Binder.
|
java.lang.Object |
Marshaller.getProperty(java.lang.String name)
Get the particular property in the underlying implementation of
Marshaller.
|
void |
Unmarshaller.setProperty(java.lang.String name,
java.lang.Object value)
Set the particular property in the underlying implementation of
Unmarshaller.
|
void |
Validator.setProperty(java.lang.String name,
java.lang.Object value)
Deprecated.
since JAXB2.0
|
abstract void |
Binder.setProperty(java.lang.String name,
java.lang.Object value)
Set the particular property in the underlying implementation of
Binder.
|
void |
Marshaller.setProperty(java.lang.String name,
java.lang.Object value)
Set the particular property in the underlying implementation of
Marshaller.
|
Modifier and Type | Method and Description |
---|---|
private void |
AbstractMarshallerImpl.checkBoolean(java.lang.String name,
java.lang.Object value) |
private void |
AbstractMarshallerImpl.checkString(java.lang.String name,
java.lang.Object value) |
java.lang.Object |
AbstractMarshallerImpl.getProperty(java.lang.String name)
Default implementation of the getProperty method handles
the four defined properties in Marshaller.
|
java.lang.Object |
AbstractUnmarshallerImpl.getProperty(java.lang.String name)
Default implementation of the getProperty method always
throws PropertyException since there are no required
properties.
|
void |
AbstractMarshallerImpl.setProperty(java.lang.String name,
java.lang.Object value)
Default implementation of the setProperty method handles
the four defined properties in Marshaller.
|
void |
AbstractUnmarshallerImpl.setProperty(java.lang.String name,
java.lang.Object value)
Default implementation of the setProperty method always
throws PropertyException since there are no required
properties.
|