XSNamedMappublic interface XSNamedMap Objects implementing the XSNamedMap interface are used to
represent collections of XML Schema components that can be accessed by
name. Note that XSNamedMap does not inherit from
XSObjectList . The XSOBject s in
XSNamedMap s are not maintained in any particular order.
The interface may be updated or replaced. |
Methods Summary |
---|
public int | getLength()The number of XSObjects in the XSObjectList .
The range of valid child object indices is 0 to
mapLength-1 inclusive.
| public XSObject | item(int index)Returns the index th item in the collection. The index
starts at 0. If index is greater than or equal to the
number of objects in the list, this returns null .
| public XSObject | itemByName(java.lang.String namespace, java.lang.String localName)Retrieves a node specified by local name and namespace URI.
Per , applications must use the value null as the
namespace parameter for methods if they wish to have no
namespace.
|
|