public class XSNamedMapImpl extends Object implements XSNamedMap
| Modifier and Type | Field and Description |
|---|---|
static XSNamedMap |
EMPTY_MAP
An immutable empty map.
|
| Constructor and Description |
|---|
XSNamedMapImpl(String[] namespaces,
SymbolHash[] maps,
int num)
Construct an XSNamedMap implmentation for a list of namespaces
|
XSNamedMapImpl(String namespace,
SymbolHash map)
Construct an XSNamedMap implmentation for one namespace
|
XSNamedMapImpl(XSObject[] array,
int length)
Construct an XSNamedMap implmentation one namespace from an array
|
| Modifier and Type | Method and Description |
|---|---|
int |
getLength()
The number of
XSObjects in the XSObjectList. |
XSObject |
item(int index)
Returns the
indexth item in the map. |
XSObject |
itemByName(String namespace,
String localName)
Retrieves an
XSObject specified by local name and namespace
URI. |
public static final XSNamedMap EMPTY_MAP
public XSNamedMapImpl(String namespace, SymbolHash map)
namespace - the namespace to which the components belongmap - the map from local names to componentspublic XSNamedMapImpl(String[] namespaces, SymbolHash[] maps, int num)
namespaces - the namespaces to which the components belongmaps - the maps from local names to componentsnum - the number of namespacespublic XSNamedMapImpl(XSObject[] array, int length)
array - containing all componentslength - number of componentspublic int getLength()
XSObjects in the XSObjectList. The
range of valid child node indices is 0 to length-1
inclusive.getLength in interface XSNamedMappublic XSObject itemByName(String namespace, String localName)
XSObject specified by local name and namespace
URI.itemByName in interface XSNamedMapnamespace - The namespace URI of the XSObject to
retrieve.localName - The local name of the XSObject to retrieve.XSObject (of any type) with the specified local
name and namespace URI, or null if they do not
identify any XSObject in this map.public XSObject item(int index)
indexth item in the map. The index starts at
0. If index is greater than or equal to the number of
nodes in the list, this returns null.item in interface XSNamedMapindex - The position in the map from which the item is to be
retrieved.XSObject at the indexth position
in the XSNamedMap, or null if that is
not a valid index.Copyright © 2012 JBoss by Red Hat. All Rights Reserved.