XmlObject Interface

com.bea.xml
XmlObject Interface

public interface XmlObject

    extends XmlTokenSource

Corresponds to the XML Schema xs:anyType, the base type for all XML Beans.

Since all XML Schema types are translated into corresponding XML Bean classes, and all Schema type derivation corresponds to Java class inheritance, the fact that all Schema types derive from xs:anyType means that all XML Bean classes derive from XmlObject.

On this base class you will find a number of common facilities that all XML Bean classes provide:

Type inference. When using XmlObject.Factory to parse XML documents, the actual document type is not XmlObject.type itself, but a subtype based on the contents of the parsed document. If the parsed document contains a recognized root document element, then the actual type of the loaded instance will be the matching Document type. For example:

 XmlObject xobj = XmlObject.Factory.parse(myDocument);
 if (xobj instanceof MyOrderDocument) // starts w/ <my-order>
 {
     MyOrderDocument mydoc = (MyOrderDocument)xobj;
     if (!xobj.validate())
         System.out.println("Not a valid my-order document");
 }
 else
 {
     System.out.println("Not a my-order document");
 }
 
Every XML Bean class has its own inner Factory class, so if you actually know exactly which XML Bean document type you want to load as in the example above, you should use the the specific XML Bean Factory class instead. For example:
 MyOrderDocument mydoc = MyOrderDocument.Factory.parse(myDocument);
 
The code above will throw an exception if the parsed document does not begin with the proper (my-order) element.

Inner versus outer. An XmlObject represents the contents of an element or attribute, not the element or attribute itself. So when you validate or save an XmlObject, you are validating or saving its contents, not its container. For example, if the XmlObject represents the contents of an element which happens to itself be in the wrong order relative to its siblings, validate will not complain about the misplacement of the element itself. On the other hand, if elements within the XmlObject are in the wrong order, validate will complain. Similarly, when saving the contents of an interior XmlObject, it is the contents of an element, not the element itself, which is saved by default.

Reading and writing fragments. When reading or writing the contents of a whole XML document, the standard XML reprentation for a document is used. However, there is no standard concrete XML representation for "just the contents" of an interior element or attribute. So when one is needed, the tag <xml-fragment> is used to wrap the contents. This tag is used can also be used to load just the contents for an XmlObject document fragment of arbitrary type. If you wish to save out the XmlObject's container element along with its contents, use XmlOptions.setSaveOuter().

Implementing XmlObject. The XMLBeans library does not support arbitrary implementations of XmlObject - in almost all cases, you should only use the implementations of XmlObject provided by the XMLBeans compiler itself. If you need to implement XmlObject yourself, you should subclass FilterXmlObject in order to delegate to another underlying XmlObject implementation. This technique will allow you to use your code unchanged with future versions of XMLBeans that add additional methods on XmlObject.


All Known Implementing Classes
FilterXmlObject
All Superinterfaces
XmlTokenSource
All Known Subinterfaces

SimpleValue, XmlAnySimpleType, XmlAnyURI, XmlBase64Binary, XmlBoolean, XmlByte, XmlDate, XmlDateTime, XmlDecimal, XmlDouble, XmlDuration, XmlENTITIES, XmlENTITY, XmlFloat, XmlGDay, XmlGMonth, XmlGMonthDay, XmlGYear, XmlGYearMonth, XmlHexBinary, XmlID, XmlIDREF, XmlIDREFS, XmlInt, XmlInteger, XmlLanguage, XmlLong, XmlName, XmlNCName, XmlNegativeInteger, XmlNMTOKEN, XmlNMTOKENS, XmlNonNegativeInteger, XmlNonPositiveInteger, XmlNormalizedString, XmlNOTATION, XmlPositiveInteger, XmlQName, XmlShort, XmlString, XmlTime, XmlToken, XmlUnsignedByte, XmlUnsignedInt, XmlUnsignedLong, XmlUnsignedShort

Nested Class Summary

public static final classXmlObject.Factory
           Static factory class for creating new instances.

Field Summary

public static final int
EQUAL
EQUAL is 0.
public static final int
GREATER_THAN
GREATER_THAN is 1.
public static final int
LESS_THAN
LESS_THAN is -1.
public static final int
NOT_EQUAL
NOT_EQUAL is 2.
public static final SchemaType
type
The constant SchemaType object representing this schema type.
 

Method Summary

public XmlObject
changeType(SchemaType newType)
Changes the schema type associated with this data and returns a new XmlObject instance whose schemaType is the new type.
public int
compareTo(Object obj)
Impelements the Comparable interface by comparing two simple xml values based on their standard XML schema ordering.
public int
compareValue(XmlObject obj)
This comparison method is similar to compareTo, but rather than throwing a ClassCastException when two values are incomparable, it returns the number 2.
public XmlObject
copy()
Returns a deep copy of this XmlObject.
public XmlObject[]
execQuery(String query)
Executes a query.
public XmlObject[]
execQuery(String query, XmlOptions options)
Executes a query with options.
public boolean
isImmutable()
True if the value is an immutable value.
public boolean
isNil()
True if the value is nil.
public SchemaType
schemaType()
The schema type for this instance.
public XmlObject[]
selectPath(String path)
Selects a path.
public XmlObject[]
selectPath(String path, XmlOptions options)
Selects a path, applying options.
public XmlObject
set(XmlObject srcObj)
Set the value/type of this XmlObject to be a copy of the source XmlObject.
public void
setNil()
Sets the value to nil.
public String
toString()
Returns an XML string for this XML object.
public boolean
validate()
Returns true if the contents of this object are valid accoring to schemaType().
public boolean
validate(XmlOptions options)

Just like validate(), but with options.

public boolean
valueEquals(XmlObject obj)
True if the xml values are equal.
public int
valueHashCode()
 
Methods from interface com.bea.xml.XmlTokenSource
documentProperties, monitor, newCursor, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, save, save, save, save, save, save, save, save, xmlText, xmlText
   

Field Detail

EQUAL

public static final int EQUAL
EQUAL is 0. See XmlObject.compareValue(XmlObject).


GREATER_THAN

public static final int GREATER_THAN
GREATER_THAN is 1. See XmlObject.compareValue(XmlObject).


LESS_THAN

public static final int LESS_THAN
LESS_THAN is -1. See XmlObject.compareValue(XmlObject).


NOT_EQUAL

public static final int NOT_EQUAL
NOT_EQUAL is 2. See XmlObject.compareValue(XmlObject).


type

public static final SchemaType type
The constant SchemaType object representing this schema type.

 

Method Detail

changeType(SchemaType) Method

public XmlObject changeType(SchemaType newType)
Changes the schema type associated with this data and returns a new XmlObject instance whose schemaType is the new type.

Returns null if the type change is not allowed. Certain type changes may be prohibited on the interior of an xml tree due to schema type system constraints (that is, due to a parent container within which the newly specified type is not permissible), but there are no constraints at the roottype changes are never prohibited at the root of an xml tree.

If the type change is allowed, then the new XmlObject should be used rather than the old one. The old XmlObject instance and any other XmlObject instances in the subtree are permanently invalidated and should not be used. (They will return InvalidStateException if you try to use them.) If a type change is done on the interior of an Xml tree, then xsi:type attributes are updated as needed.


compareTo(Object) Method

public int compareTo(Object obj)
Impelements the Comparable interface by comparing two simple xml values based on their standard XML schema ordering. Throws a ClassCastException if no standard ordering applies, or if the two values are incomparable within a partial order.


compareValue(XmlObject) Method

public int compareValue(XmlObject obj)
This comparison method is similar to compareTo, but rather than throwing a ClassCastException when two values are incomparable, it returns the number 2. The result codes are -1 if this object is less than obj, 1 if this object is greater than obj, zero if the objects are equal, and 2 if the objects are incomparable.


copy() Method

public XmlObject copy()
Returns a deep copy of this XmlObject. The returned object has the same type as the current object, and has all the content of the XML document underneath the current object. Note that any parts of the XML document above or outside this XmlObject are not copied.


execQuery(String) Method

public XmlObject[] execQuery(String query)
Executes a query. Query can be a string or precompiled query String.

An XQuery is very similar to an XPath, except that it also permits construction of new XML. As a result, the XmlObjects that are returned from execQuery are in newly created documents, separate from the XmlObject on which the query is executed.

Syntax and usage is otherwise similar to selectPath.

Related Topics

XmlObject.selectPath(String)


execQuery(String, XmlOptions) Method

public XmlObject[] execQuery(String query, 
                           XmlOptions options)
Executes a query with options. Use the options parameter to specify the following:

To specify thisUse this method
The document type for the root element. XmlOptions.setDocumentType(SchemaType)
To replace the document element with the specified QName when constructing the resulting document. XmlOptions.setLoadReplaceDocumentElement(QName)
To strip all insignificant whitespace when constructing a document. XmlOptions.setLoadStripWhitespace()
To strip all comments when constructing a document. XmlOptions.setLoadStripComments()
To strip all processing instructions when constructing a document. XmlOptions.setLoadStripProcinsts()
A map of namespace URI substitutions to use when constructing a document. XmlOptions.setLoadSubstituteNamespaces(Map)
Additional namespace mappings to be added when constructing a document. XmlOptions.setLoadAdditionalNamespaces(Map)
To trim the underlying XML text buffer immediately after constructing a document, resulting in a smaller memory footprint. XmlOptions.setLoadTrimTextBuffer()
Whether value facets should be checked as they are set. XmlOptions.setValidateOnSet()

Parameters

query
The XQuery expression.
options
Options as described.

Related Topics

XmlObject.execQuery(String)


isImmutable() Method

public boolean isImmutable()
True if the value is an immutable value. Immutable values do not have a position in a tree; rather, they are stand-alone simple type values. If the object is immutable, the equals() methods tests for value equality, and the object can be used as the key for a hash.


isNil() Method

public boolean isNil()
True if the value is nil. Note that in order to be nil, the value must be in an element, and the element containing the value must be marked as nillable in the schema.


schemaType() Method

public SchemaType schemaType()
The schema type for this instance. This is a permanent, unchanging property of the instance.


selectPath(String) Method

public XmlObject[] selectPath(String path)
Selects a path. Path can be a string or precompiled path String.

The path must be a relative path, where "." represents the element or attribute containg this XmlObject, and it must select only other elements or attributes. If a non-element or non-attribute is selected, an unchecked exception is thrown.

The array that is returned contains all the selected XmlObjects, within the same document, listed in document order. The actual array type of the result is inferred from the closest common base type of selected results.

Here is an example of usage. Suppose we have a global element definition for "owner" whose type is "person":

   <schema targetNamespace="http://openuri.org/sample">
      <element name="owner" type="person"/>
      <complexType name="person">
         [...]
      </complexType>
   </schema>
 
and suppose "owner" tags can be scattered throughout the document. Then we can write the following code to find them all:
 import org.openuri.sample.Person;
 import com.bea.xml.*;
 [...]
   XmlObject xobj = XmlObject.Factory.parse(myFile);
   Person[] results;
   results = (Person[])xobj.selectPath(
      "declare namespace s='http://www.openuri.org/sample' " +
      ".//s:owner");
 
Notice the way in which namespace declarations are done in XPath 2.0. Since XPath can only navigate within an XML document - it cannot construct new XML - the resulting XmlObjects all reside in the same XML document as this XmlObject itself.


selectPath(String, XmlOptions) Method

public XmlObject[] selectPath(String path, 
                            XmlOptions options)
Selects a path, applying options.

Related Topics

XmlObject.selectPath(String)


set(XmlObject) Method

public XmlObject set(XmlObject srcObj)
Set the value/type of this XmlObject to be a copy of the source XmlObject. Because the type of the source may be different than this target, this XmlObject may become defunct. In this case the new XmlObject is returned. If no type change happens, the same this will be returned.


setNil() Method

public void setNil()
Sets the value to nil. The element containing the value must be marked as nillable in the schema.


toString() Method

public String toString()
Returns an XML string for this XML object.

The string is pretty-printed. If you want a non-pretty-printed string, or if you want to control options precisely, use the xmlText() methods.

Note that when producing XML any object other than very root of the document, then you are guaranteed to be looking at only a fragment of XML, i.e., just the contents of an element or attribute, and and we will produce a string that starts with an <xml-fragment> tag. The XmlOptions.setSaveOuter() option on xmlText can be used to produce the actual element name above the object if you wish.

Overrides
Object.toString()

validate() Method

public boolean validate()
Returns true if the contents of this object are valid accoring to schemaType().

Does a deep validation of the entire subtree under the object, but does not validate the parents or siblings of the object if the object is in the interior of an xml tree.


validate(XmlOptions) Method

public boolean validate(XmlOptions options)

Just like validate(), but with options.

If you wish to collect error messages and locations while validating, use the XmlOptions.setErrorListener(Collection) method. With that method, you can specify an object in which to store messages related to validation. The following is a simple example.

 // Create an XmlOptions instance and set the error listener.
 XmlOptions validateOptions = new XmlOptions();
 ArrayList errorList = new ArrayList();
 validateOptions.setErrorListener(errorList);
 
 // Validate the XML.
 boolean isValid = newEmp.validate(validateOptions);
 
 // If the XML isn't valid, loop through the listener's contents,
 // printing contained messages.
 if (!isValid)
 {
      for (int i = 0; i < errorList.size(); i++)
      {
          XmlError error = (XmlError)errorList.get(i);
          
          System.out.println("\n");
          System.out.println("Message: " + error.getMessage() + "\n");
          System.out.println("Location of invalid XML: " + 
              error.getCursorLocation().xmlText() + "\n");
      }
 }
 

Parameters

options
An object that implements the Collection interface.

valueEquals(XmlObject) Method

public boolean valueEquals(XmlObject obj)
True if the xml values are equal. Two different objects (which are distinguished by equals(obj) == false) may of course have equal values (valueEquals(obj) == true).

Usually this method can be treated as an ordinary equvalence relation, but actually it is not is not transitive. Here is a precise specification:

There are two categories of XML object: objects with a known instance type, and objects whose only known type is one of the ur-types (either AnyType or AnySimpleType). The first category is compared in terms of logical value spaces, and the second category is compared lexically.

Within each of these two categories, valueEquals is a well-behaved equivalence relation. However, when comparing an object of known type with an object with ur-type, the comparison is done by attempting to convert the lexical form of the ur-typed object into the other type, and then comparing the results. Ur-typed objects are therefore treated as lexical wildcards and may be equal to objects in different value spaces, even though the objects in different value spaces are not equal to each other.

For example, the anySimpleType value "1" will compare as an equalValue to the string "1", the float value "1.0", the double value "1.0", the decimal "1", and the GYear "1", even though all these objects will compare unequal to each other since they lie in different value spaces.


valueHashCode() Method

public int valueHashCode()