String |
UnmarshallingContext.accumulateText() |
Accumulate text content.
|
void |
MarshallingContext.addMarshalling(String mapname,
String name) |
Define marshalling for class.
|
void |
UnmarshallingContext.addUnmarshalling(String mapname,
String ns,
String name,
String cname) |
Define unmarshalling for element.
|
MarshallingContext |
MarshallingContext.attribute(int index,
String name,
int value) |
Generate integer attribute.
|
MarshallingContext |
MarshallingContext.attribute(int index,
String name,
int value,
String[] table) |
Generate enumeration attribute.
|
MarshallingContext |
MarshallingContext.attribute(int index,
String name,
String value) |
Generate text attribute.
|
boolean |
UnmarshallingContext.attributeBoolean(String ns,
String name) |
Get boolean value of attribute from current start tag.
|
boolean |
UnmarshallingContext.attributeBoolean(String ns,
String name,
boolean dflt) |
Get boolean value of optional attribute from current start tag.
|
byte |
UnmarshallingContext.attributeByte(String ns,
String name) |
Get byte value of attribute from current start tag.
|
byte |
UnmarshallingContext.attributeByte(String ns,
String name,
byte dflt) |
Get byte value of optional attribute from current start tag.
|
char |
UnmarshallingContext.attributeChar(String ns,
String name) |
Get char value of attribute from current start tag.
|
char |
UnmarshallingContext.attributeChar(String ns,
String name,
char dflt) |
Get char value of optional attribute from current start tag.
|
Date |
UnmarshallingContext.attributeDate(String ns,
String name) |
Get java.util.Date value of attribute from current start
tag.
|
Date |
UnmarshallingContext.attributeDate(String ns,
String name,
Date dflt) |
Get java.util.Date value of optional attribute from current
start tag.
|
double |
UnmarshallingContext.attributeDouble(String ns,
String name) |
Get double value of attribute from current start tag.
|
double |
UnmarshallingContext.attributeDouble(String ns,
String name,
double dflt) |
Get double value of optional attribute from current start tag.
|
int |
UnmarshallingContext.attributeEnumeration(String ns,
String name,
String[] enums,
int[] vals) |
Get enumeration attribute value from current start tag.
|
int |
UnmarshallingContext.attributeEnumeration(String ns,
String name,
String[] enums,
int[] vals,
int dflt) |
Get optional enumeration attribute value from current start tag.
|
Object |
UnmarshallingContext.attributeExistingIDREF(String ns,
String name,
int index) |
Get previously defined object corresponding to IDREF attribute from
current start tag.
|
float |
UnmarshallingContext.attributeFloat(String ns,
String name) |
Get float value of attribute from current start tag.
|
float |
UnmarshallingContext.attributeFloat(String ns,
String name,
float dflt) |
Get float value of optional attribute from current start tag.
|
Object |
UnmarshallingContext.attributeForwardIDREF(String ns,
String name,
int index) |
Get object (if defined yet) corresponding to IDREF attribute from
current start tag.
|
int |
UnmarshallingContext.attributeInt(String ns,
String name) |
Get integer value of attribute from current start tag.
|
int |
UnmarshallingContext.attributeInt(String ns,
String name,
int dflt) |
Get integer value of optional attribute from current
start tag.
|
long |
UnmarshallingContext.attributeLong(String ns,
String name) |
Get long value of attribute from current start tag.
|
long |
UnmarshallingContext.attributeLong(String ns,
String name,
long dflt) |
Get long value of optional attribute from current start tag.
|
short |
UnmarshallingContext.attributeShort(String ns,
String name) |
Get short value of attribute from current start tag.
|
short |
UnmarshallingContext.attributeShort(String ns,
String name,
short dflt) |
Get short value of optional attribute from current start tag.
|
String |
UnmarshallingContext.attributeText(String ns,
String name) |
Get text value of attribute from current start tag.
|
void |
UnmarshallingContext.checkAllowedAttributes(String[] nss,
String[] names) |
Check that only allowed attributes are present on current start tag.
|
MarshallingContext |
MarshallingContext.closeStartContent() |
Close start tag with content to follow.
|
MarshallingContext |
MarshallingContext.closeStartEmpty() |
Close start tag with no content (empty tag).
|
MarshallingContext |
MarshallingContext.content(int value) |
Add integer content to current element.
|
MarshallingContext |
MarshallingContext.content(int value,
String[] table) |
Add enumeration content to current element.
|
MarshallingContext |
MarshallingContext.content(String value) |
Add text content to current element.
|
boolean |
UnmarshallingContext.convertBoolean(String text) |
Convert boolean value.
|
byte |
UnmarshallingContext.convertByte(String text) |
Convert byte value with exception wrapper.
|
char |
UnmarshallingContext.convertChar(String text) |
Convert char value with exception wrapper.
|
Date |
UnmarshallingContext.convertDate(String text) |
Convert java.util.Date value with exception wrapper.
|
double |
UnmarshallingContext.convertDouble(String text) |
Convert double value with exception wrapper.
|
int |
UnmarshallingContext.convertEnum(String target,
String[] enums,
int[] vals) |
Find required text value in enumeration.
|
int |
UnmarshallingContext.convertEnum(String target,
String[] enums,
int[] vals,
int dflt) |
Find optional text value in enumeration.
|
float |
UnmarshallingContext.convertFloat(String text) |
Convert float value with exception wrapper.
|
long |
UnmarshallingContext.convertLong(String text) |
Convert long value with exception wrapper.
|
short |
UnmarshallingContext.convertShort(String text) |
Convert short value with exception wrapper.
|
IMarshallingContext |
BindingFactoryBase.createMarshallingContext() |
Create a new marshalling context.
|
IXMLReader |
IXMLReaderFactory.createReader(InputStream is,
String name,
String enc,
boolean nsf) |
Get new XML reader instance for document from input stream.
|
IXMLReader |
IXMLReaderFactory.createReader(Reader rdr,
String name,
boolean nsf) |
Get new XML reader instance for document from reader.
|
IXMLReader |
StAXReaderFactory.createReader(InputStream is,
String name,
String enc,
boolean nsf) |
|
IXMLReader |
StAXReaderFactory.createReader(Reader rdr,
String name,
boolean nsf) |
|
IXMLReader |
XMLPullReaderFactory.createReader(InputStream is,
String name,
String enc,
boolean nsf) |
|
IXMLReader |
XMLPullReaderFactory.createReader(Reader rdr,
String name,
boolean nsf) |
|
IUnmarshallingContext |
BindingFactoryBase.createUnmarshallingContext() |
Create a new unmarshalling context.
|
int |
UnmarshallingContext.currentEvent() |
Get the current parse event type.
|
void |
UnmarshallingContext.defineID(String id,
int index,
Object obj) |
Define object for ID.
|
MarshallingContext |
MarshallingContext.element(int index,
String name,
int value) |
Generate complete element with integer content.
|
MarshallingContext |
MarshallingContext.element(int index,
String name,
int value,
String[] table) |
Generate complete element with enumeration content.
|
MarshallingContext |
MarshallingContext.element(int index,
String name,
String value) |
Generate complete element with text content.
|
void |
MarshallingContext.endDocument() |
End document.
|
MarshallingContext |
MarshallingContext.endTag(int index,
String name) |
Generate end tag for element.
|
Object |
UnmarshallingContext.findDefinedID(String id,
int index) |
Find previously defined object corresponding to an ID.
|
Object |
UnmarshallingContext.findID(String id,
int index) |
Find the object corresponding to an ID.
|
String[] |
BindingFactoryBase.getBindingClasses() |
Get the classes used by the binding.
|
String |
UnmarshallingContext.getElementName() |
Returns current element name.
|
String |
UnmarshallingContext.getElementNamespace() |
Returns current element namespace URI.
|
int |
StAXReaderWrapper.getEventType() |
|
IMarshaller |
MarshallingContext.getMarshaller(String mapname) |
Find the marshaller for a particular class index in the current context.
|
IUnmarshaller |
UnmarshallingContext.getUnmarshaller(String mapname) |
Find the unmarshaller for a particular class in the current context.
|
IUnmarshaller |
UnmarshallingContext.getUnmarshaller(String ns,
String name) |
Find the unmarshaller for a particular element name (including
namespace) in the current context.
|
boolean |
UnmarshallingContext.hasAnyAttribute(String[] nss,
String[] names) |
Check if any of several attributes is present on current start tag.
|
boolean |
UnmarshallingContext.hasAttribute(String ns,
String name) |
Check if attribute is present on current start tag.
|
boolean |
UnmarshallingContext.isAt(String ns,
String name) |
Check if next tag is start of element.
|
boolean |
UnmarshallingContext.isEnd() |
Check if next tag is an end tag.
|
boolean |
UnmarshallingContext.isStart() |
Check if next tag is a start tag.
|
MarshallingContext |
MarshallingContext.marshalCollection(ArrayList col) |
Marshal all items in a collection.
|
MarshallingContext |
MarshallingContext.marshalCollection(Collection col) |
Marshal all items in a collection.
|
MarshallingContext |
MarshallingContext.marshalCollection(Vector col) |
Marshal all items in a collection.
|
void |
MarshallingContext.marshalDocument(Object root) |
Marshal document from root object without XML declaration.
|
void |
MarshallingContext.marshalDocument(Object root,
String enc,
Boolean alone) |
Marshal document from root object.
|
void |
MarshallingContext.marshalDocument(Object root,
String enc,
Boolean alone,
OutputStream outs) |
Marshal document from root object to output stream with encoding.
|
void |
MarshallingContext.marshalDocument(Object root,
String enc,
Boolean alone,
Writer outw) |
Marshal document from root object to writer.
|
protected void |
MarshallingContext.marshalRoot(Object root) |
Marshal document from root object.
|
int |
StAXReaderWrapper.next() |
|
int |
UnmarshallingContext.next() |
Advance to next major parse event.
|
int |
StAXReaderWrapper.nextToken() |
|
int |
UnmarshallingContext.nextToken() |
Advance to next parse event.
|
byte |
UnmarshallingContext.parseContentByte(String ns,
String tag) |
Parse past end of element, returning byte value of content.
|
char |
UnmarshallingContext.parseContentChar(String ns,
String tag) |
Parse past end of element, returning char value of content.
|
int |
UnmarshallingContext.parseContentEnumeration(String ns,
String tag,
String[] enums,
int[] vals) |
Parse past end of element, returning enumeration value of content.
|
int |
UnmarshallingContext.parseContentInt(String ns,
String tag) |
Parse past end of element, returning integer value of
content.
|
short |
UnmarshallingContext.parseContentShort(String ns,
String tag) |
Parse past end of element, returning short value of content.
|
String |
UnmarshallingContext.parseContentText() |
Parse required text content.
|
String |
UnmarshallingContext.parseContentText(String ns,
String tag) |
Parse past end of element, returning optional text content.
|
boolean |
UnmarshallingContext.parseElementBoolean(String ns,
String tag) |
Parse entire element, returning boolean value of content.
|
boolean |
UnmarshallingContext.parseElementBoolean(String ns,
String tag,
boolean dflt) |
Parse entire element, returning boolean value of optional content.
|
byte |
UnmarshallingContext.parseElementByte(String ns,
String tag) |
Parse entire element, returning byte value of content.
|
byte |
UnmarshallingContext.parseElementByte(String ns,
String tag,
byte dflt) |
Parse entire element, returning byte value of optional content.
|
char |
UnmarshallingContext.parseElementChar(String ns,
String tag) |
Parse entire element, returning char value of content.
|
char |
UnmarshallingContext.parseElementChar(String ns,
String tag,
char dflt) |
Parse entire element, returning char value of optional content.
|
Date |
UnmarshallingContext.parseElementDate(String ns,
String tag) |
Parse past end of element, returning java.util.Date value
of content.
|
Date |
UnmarshallingContext.parseElementDate(String ns,
String tag,
Date dflt) |
Parse entire element, returning java.util.Date value of
optional content.
|
double |
UnmarshallingContext.parseElementDouble(String ns,
String tag) |
Parse past end of element, returning double value of content.
|
double |
UnmarshallingContext.parseElementDouble(String ns,
String tag,
double dflt) |
Parse entire element, returning double value of optional content.
|
int |
UnmarshallingContext.parseElementEnumeration(String ns,
String tag,
String[] enums,
int[] vals,
int dflt) |
Parse entire element, returning enumeration value of optional content.
|
Object |
UnmarshallingContext.parseElementExistingIDREF(String ns,
String tag,
int index) |
Parse entire element, returning previously defined object corresponding
to content interpreted as IDREF.
|
float |
UnmarshallingContext.parseElementFloat(String ns,
String tag) |
Parse past end of element, returning float value of content.
|
float |
UnmarshallingContext.parseElementFloat(String ns,
String tag,
float dflt) |
Parse entire element, returning float value of optional content.
|
Object |
UnmarshallingContext.parseElementForwardIDREF(String ns,
String tag,
int index) |
Parse entire element, returning object (if defined yet) corresponding
to content interpreted as IDREF.
|
int |
UnmarshallingContext.parseElementInt(String ns,
String tag) |
Parse entire element, returning integer value of content.
|
int |
UnmarshallingContext.parseElementInt(String ns,
String tag,
int dflt) |
Parse entire optional element, returning integer value of content.
|
long |
UnmarshallingContext.parseElementLong(String ns,
String tag) |
Parse past end of element, returning long value of content.
|
long |
UnmarshallingContext.parseElementLong(String ns,
String tag,
long dflt) |
Parse entire element, returning long value of optional content.
|
short |
UnmarshallingContext.parseElementShort(String ns,
String tag) |
Parse entire element, returning short value of content.
|
short |
UnmarshallingContext.parseElementShort(String ns,
String tag,
short dflt) |
Parse entire element, returning short value of optional content.
|
String |
UnmarshallingContext.parseElementText(String ns,
String tag) |
Parse entire element, returning text content.
|
String |
UnmarshallingContext.parseElementText(String ns,
String tag,
String dflt) |
Parse entire element, returning optional text content.
|
boolean |
UnmarshallingContext.parseIfStartTag(String ns,
String name) |
Parse past start of expected element.
|
void |
UnmarshallingContext.parsePastCurrentEndTag(String ns,
String name) |
Parse past current end of element.
|
void |
UnmarshallingContext.parsePastElement(String ns,
String tag) |
Parse past element, ignoring all content.
|
void |
UnmarshallingContext.parsePastEndTag(String ns,
String name) |
Parse past end of element.
|
void |
UnmarshallingContext.parsePastStartTag(String ns,
String name) |
Parse past start of element.
|
void |
UnmarshallingContext.parseToStartTag(String ns,
String name) |
Parse to start of element.
|
void |
MarshallingContext.popObject() |
Pop marshalled object from stack.
|
void |
UnmarshallingContext.popObject() |
Pop unmarshalled object from stack.
|
IXMLReader |
IXMLReaderFactory.recycleReader(IXMLReader old,
InputStream is,
String name,
String enc) |
Recycle XML reader instance for new document from input stream.
|
IXMLReader |
IXMLReaderFactory.recycleReader(IXMLReader old,
Reader rdr,
String name) |
Recycle XML reader instance for document from reader.
|
IXMLReader |
StAXReaderFactory.recycleReader(IXMLReader old,
InputStream is,
String name,
String enc) |
|
IXMLReader |
StAXReaderFactory.recycleReader(IXMLReader old,
Reader rdr,
String name) |
|
IXMLReader |
XMLPullReaderFactory.recycleReader(IXMLReader old,
InputStream is,
String name,
String enc) |
|
IXMLReader |
XMLPullReaderFactory.recycleReader(IXMLReader old,
Reader rdr,
String name) |
|
void |
UnmarshallingContext.registerBackFill(int index,
BackFillReference fill) |
Register back fill item for last parsed ID value.
|
void |
UnmarshallingContext.registerBackFill(String id,
int index,
BackFillReference fill) |
Register back fill item for undefined ID value.
|
void |
MarshallingContext.removeMarshalling(String mapname) |
Undefine marshalling for element.
|
void |
UnmarshallingContext.removeUnmarshalling(String mapname) |
Undefine unmarshalling for element.
|
void |
UnmarshallingContext.setDocument(InputStream ins,
String enc) |
Set document to be parsed from stream.
|
void |
UnmarshallingContext.setDocument(InputStream ins,
String name,
String enc) |
Set named document to be parsed from stream.
|
void |
UnmarshallingContext.setDocument(InputStream ins,
String name,
String enc,
boolean nsa) |
Set document to be parsed from stream.
|
void |
UnmarshallingContext.setDocument(Reader rdr) |
Set document to be parsed from reader.
|
void |
UnmarshallingContext.setDocument(Reader rdr,
String name) |
Set named document to be parsed from reader.
|
void |
UnmarshallingContext.setDocument(Reader rdr,
String name,
boolean nsa) |
Set document to be parsed from reader.
|
void |
MarshallingContext.setOutput(OutputStream outs,
String enc) |
Set output stream and encoding.
|
void |
MarshallingContext.setOutput(OutputStream outs,
String enc,
ICharacterEscaper esc) |
Set output stream with encoding and escaper.
|
void |
UnmarshallingContext.skipElement() |
Skip past current element.
|
void |
MarshallingContext.startDocument(String enc,
Boolean alone) |
Start document.
|
void |
MarshallingContext.startDocument(String enc,
Boolean alone,
OutputStream outs) |
Start document with output stream and encoding.
|
void |
MarshallingContext.startDocument(String enc,
Boolean alone,
Writer outw) |
Start document with writer.
|
MarshallingContext |
MarshallingContext.startTag(int index,
String name) |
Generate start tag for element without attributes.
|
MarshallingContext |
MarshallingContext.startTagAttributes(int index,
String name) |
Generate start tag for element with attributes.
|
MarshallingContext |
MarshallingContext.startTagNamespaces(int index,
String name,
int[] nums,
String[] prefs) |
Generate start tag for element with namespaces.
|
void |
UnmarshallingContext.throwEndTagNameError(String ns,
String name) |
Throw exception for expected element end tag not found.
|
void |
UnmarshallingContext.throwException(String msg) |
Throw exception with position information.
|
void |
UnmarshallingContext.throwException(String msg,
Exception ex) |
Throw exception with position information and nested exception.
|
void |
UnmarshallingContext.throwNameException(String msg,
String ns,
String name) |
Throw exception including a name and position information.
|
void |
UnmarshallingContext.throwStartTagException(String msg) |
Throw exception with start tag and position information.
|
void |
UnmarshallingContext.throwStartTagException(String msg,
Exception ex) |
Throw exception with start tag, position information, and nested
exception.
|
void |
UnmarshallingContext.throwStartTagNameError(String ns,
String name) |
Throw exception for expected element start tag not found.
|
String |
UnmarshallingContext.toEnd() |
Parse to end tag.
|
String |
UnmarshallingContext.toStart() |
Parse to start tag.
|
int |
UnmarshallingContext.toTag() |
Parse to start or end tag.
|
Object |
UnmarshallingContext.unmarshalDocument(InputStream ins,
String enc) |
Unmarshal document from stream to object.
|
Object |
UnmarshallingContext.unmarshalDocument(InputStream ins,
String name,
String enc) |
Unmarshal named document from stream to object.
|
Object |
UnmarshallingContext.unmarshalDocument(Reader rdr) |
Unmarshal document from reader to object.
|
Object |
UnmarshallingContext.unmarshalDocument(Reader rdr,
String name) |
Unmarshal named document from reader to object.
|
Object |
UnmarshallingContext.unmarshalElement() |
Unmarshal required element.
|
Object |
UnmarshallingContext.unmarshalElement(Class clas) |
Unmarshal required element of specified type.
|
Object |
UnmarshallingContext.unmarshalOptionalElement() |
Unmarshal optional element.
|
void |
BindingFactoryBase.verifyBaseBindings() |
Verify that separately-compiled base bindings used by this binding can be
loaded and are compatible with the base bindings used when this binding
was compiled.
|