public final class XSModelImpl
extends java.util.AbstractList
implements org.apache.xerces.xs.XSModel, org.apache.xerces.xs.XSNamespaceItemList
Constructor and Description |
---|
XSModelImpl(SchemaGrammar[] grammars)
Construct an XSModelImpl, by storing some grammars and grammars imported
by them to this object.
|
XSModelImpl(SchemaGrammar[] grammars,
short s4sVersion) |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
get(int index) |
org.apache.xerces.xs.XSObjectList |
getAnnotations()
[annotations]: a set of annotations if it exists, otherwise an empty
XSObjectList . |
org.apache.xerces.xs.XSAttributeDeclaration |
getAttributeDeclaration(java.lang.String name,
java.lang.String namespace)
Convenience method.
|
org.apache.xerces.xs.XSAttributeDeclaration |
getAttributeDeclaration(java.lang.String name,
java.lang.String namespace,
java.lang.String loc)
Convenience method.
|
org.apache.xerces.xs.XSAttributeGroupDefinition |
getAttributeGroup(java.lang.String name,
java.lang.String namespace)
Convenience method.
|
org.apache.xerces.xs.XSAttributeGroupDefinition |
getAttributeGroup(java.lang.String name,
java.lang.String namespace,
java.lang.String loc)
Convenience method.
|
org.apache.xerces.xs.XSNamedMap |
getComponents(short objectType)
Returns a list of top-level components, i.e.
|
org.apache.xerces.xs.XSNamedMap |
getComponentsByNamespace(short objectType,
java.lang.String namespace)
Convenience method.
|
org.apache.xerces.xs.XSElementDeclaration |
getElementDeclaration(java.lang.String name,
java.lang.String namespace)
Convenience method.
|
org.apache.xerces.xs.XSElementDeclaration |
getElementDeclaration(java.lang.String name,
java.lang.String namespace,
java.lang.String loc)
Convenience method.
|
org.apache.xerces.xs.XSIDCDefinition |
getIDCDefinition(java.lang.String name,
java.lang.String namespace)
Convenience method.
|
org.apache.xerces.xs.XSIDCDefinition |
getIDCDefinition(java.lang.String name,
java.lang.String namespace,
java.lang.String loc)
Convenience method.
|
int |
getLength()
The number of
XSNamespaceItem s in the list. |
org.apache.xerces.xs.XSModelGroupDefinition |
getModelGroupDefinition(java.lang.String name,
java.lang.String namespace)
Convenience method.
|
org.apache.xerces.xs.XSModelGroupDefinition |
getModelGroupDefinition(java.lang.String name,
java.lang.String namespace,
java.lang.String loc)
Convenience method.
|
org.apache.xerces.xs.XSNamespaceItemList |
getNamespaceItems()
A set of namespace schema information information items (of type
XSNamespaceItem ), one for each namespace name which
appears as the target namespace of any schema component in the schema
used for that assessment, and one for absent if any schema component
in the schema had no target namespace. |
org.apache.xerces.xs.StringList |
getNamespaces()
Convenience method.
|
org.apache.xerces.xs.XSNotationDeclaration |
getNotationDeclaration(java.lang.String name,
java.lang.String namespace)
Convenience method.
|
org.apache.xerces.xs.XSNotationDeclaration |
getNotationDeclaration(java.lang.String name,
java.lang.String namespace,
java.lang.String loc) |
org.apache.xerces.xs.XSObjectList |
getSubstitutionGroup(org.apache.xerces.xs.XSElementDeclaration head)
Convenience method.
|
org.apache.xerces.xs.XSTypeDefinition |
getTypeDefinition(java.lang.String name,
java.lang.String namespace)
Convenience method.
|
org.apache.xerces.xs.XSTypeDefinition |
getTypeDefinition(java.lang.String name,
java.lang.String namespace,
java.lang.String loc)
Convenience method.
|
boolean |
hasIDConstraints()
REVISIT: to expose identity constraints from XSModel.
|
org.apache.xerces.xs.XSNamespaceItem |
item(int index)
Returns the
index th item in the collection or
null if index is greater than or equal to
the number of objects in the list. |
java.util.Iterator |
iterator() |
java.util.ListIterator |
listIterator() |
java.util.ListIterator |
listIterator(int index) |
int |
size() |
java.lang.Object[] |
toArray() |
java.lang.Object[] |
toArray(java.lang.Object[] a) |
add, add, addAll, clear, equals, hashCode, indexOf, lastIndexOf, remove, removeRange, set, subList
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toString
public XSModelImpl(SchemaGrammar[] grammars)
grammars
- the array of schema grammarspublic XSModelImpl(SchemaGrammar[] grammars, short s4sVersion)
public org.apache.xerces.xs.StringList getNamespaces()
getNamespaces
in interface org.apache.xerces.xs.XSModel
null
if all components don't have a targetNamespace.public org.apache.xerces.xs.XSNamespaceItemList getNamespaceItems()
XSNamespaceItem
), one for each namespace name which
appears as the target namespace of any schema component in the schema
used for that assessment, and one for absent if any schema component
in the schema had no target namespace. For more information see
schema information.getNamespaceItems
in interface org.apache.xerces.xs.XSModel
public org.apache.xerces.xs.XSNamedMap getComponents(short objectType)
getComponents
in interface org.apache.xerces.xs.XSModel
objectType
- The type of the declaration, i.e.
ELEMENT_DECLARATION
. Note that
XSTypeDefinition.SIMPLE_TYPE
and
XSTypeDefinition.COMPLEX_TYPE
can also be used as the
objectType
to retrieve only complex types or simple
types, instead of all types.objectType
or an empty XSNamedMap
if no
such definitions exist.public org.apache.xerces.xs.XSNamedMap getComponentsByNamespace(short objectType, java.lang.String namespace)
getComponentsByNamespace
in interface org.apache.xerces.xs.XSModel
objectType
- The type of the declaration, i.e.
ELEMENT_DECLARATION
.namespace
- The namespace to which the declaration belongs or
null
(for components with no target namespace).objectType
and defined in the specified
namespace
or an empty XSNamedMap
.public org.apache.xerces.xs.XSTypeDefinition getTypeDefinition(java.lang.String name, java.lang.String namespace)
getTypeDefinition
in interface org.apache.xerces.xs.XSModel
name
- The name of the definition.namespace
- The namespace of the definition, otherwise null.XSTypeDefinition
or null if such definition
does not exist.public org.apache.xerces.xs.XSTypeDefinition getTypeDefinition(java.lang.String name, java.lang.String namespace, java.lang.String loc)
name
- The name of the definition.namespace
- The namespace of the definition, otherwise null.loc
- The schema location where the component was definedXSTypeDefinition
or null if such definition
does not exist.public org.apache.xerces.xs.XSAttributeDeclaration getAttributeDeclaration(java.lang.String name, java.lang.String namespace)
getAttributeDeclaration
in interface org.apache.xerces.xs.XSModel
name
- The name of the declaration.namespace
- The namespace of the definition, otherwise null.public org.apache.xerces.xs.XSAttributeDeclaration getAttributeDeclaration(java.lang.String name, java.lang.String namespace, java.lang.String loc)
name
- The name of the declaration.namespace
- The namespace of the definition, otherwise null.loc
- The schema location where the component was definedpublic org.apache.xerces.xs.XSElementDeclaration getElementDeclaration(java.lang.String name, java.lang.String namespace)
getElementDeclaration
in interface org.apache.xerces.xs.XSModel
name
- The name of the declaration.namespace
- The namespace of the definition, otherwise null.public org.apache.xerces.xs.XSElementDeclaration getElementDeclaration(java.lang.String name, java.lang.String namespace, java.lang.String loc)
name
- The name of the declaration.namespace
- The namespace of the definition, otherwise null.loc
- The schema location where the component was definedpublic org.apache.xerces.xs.XSAttributeGroupDefinition getAttributeGroup(java.lang.String name, java.lang.String namespace)
getAttributeGroup
in interface org.apache.xerces.xs.XSModel
name
- The name of the definition.namespace
- The namespace of the definition, otherwise null.public org.apache.xerces.xs.XSAttributeGroupDefinition getAttributeGroup(java.lang.String name, java.lang.String namespace, java.lang.String loc)
name
- The name of the definition.namespace
- The namespace of the definition, otherwise null.loc
- The schema location where the component was definedpublic org.apache.xerces.xs.XSModelGroupDefinition getModelGroupDefinition(java.lang.String name, java.lang.String namespace)
getModelGroupDefinition
in interface org.apache.xerces.xs.XSModel
name
- The name of the definition.namespace
- The namespace of the definition, otherwise null.public org.apache.xerces.xs.XSModelGroupDefinition getModelGroupDefinition(java.lang.String name, java.lang.String namespace, java.lang.String loc)
name
- The name of the definition.namespace
- The namespace of the definition, otherwise null.loc
- The schema location where the component was definedpublic org.apache.xerces.xs.XSIDCDefinition getIDCDefinition(java.lang.String name, java.lang.String namespace)
getIDCDefinition
in interface org.apache.xerces.xs.XSModel
name
- The name of the definition.namespace
- The namespace of the definition, otherwise null.public org.apache.xerces.xs.XSIDCDefinition getIDCDefinition(java.lang.String name, java.lang.String namespace, java.lang.String loc)
name
- The name of the definition.namespace
- The namespace of the definition, otherwise null.loc
- The schema location where the component was definedpublic org.apache.xerces.xs.XSNotationDeclaration getNotationDeclaration(java.lang.String name, java.lang.String namespace)
org.apache.xerces.xs.XSModel
getNotationDeclaration
in interface org.apache.xerces.xs.XSModel
name
- The name of the declaration.namespace
- The namespace of the declaration, otherwise
null
.null
if such
a declaration does not exist.XSModel.getNotationDeclaration(String, String)
public org.apache.xerces.xs.XSNotationDeclaration getNotationDeclaration(java.lang.String name, java.lang.String namespace, java.lang.String loc)
public org.apache.xerces.xs.XSObjectList getAnnotations()
XSObjectList
.getAnnotations
in interface org.apache.xerces.xs.XSModel
public boolean hasIDConstraints()
public org.apache.xerces.xs.XSObjectList getSubstitutionGroup(org.apache.xerces.xs.XSElementDeclaration head)
XSElementDeclaration
or an empty XSObjectList
if the substitution group
contains no members.getSubstitutionGroup
in interface org.apache.xerces.xs.XSModel
head
- The substitution group head.XSElementDeclaration
or an empty
XSObjectList
if the substitution group contains
no members.public int getLength()
XSNamespaceItem
s in the list. The range of
valid child object indices is 0 to length-1
inclusive.getLength
in interface org.apache.xerces.xs.XSNamespaceItemList
public org.apache.xerces.xs.XSNamespaceItem item(int index)
index
th item in the collection or
null
if index
is greater than or equal to
the number of objects in the list. The index starts at 0.item
in interface org.apache.xerces.xs.XSNamespaceItemList
index
- index into the collection.XSNamespaceItem
at the index
th
position in the XSNamespaceItemList
, or
null
if the index specified is not valid.public java.lang.Object get(int index)
get
in interface java.util.List
get
in class java.util.AbstractList
public int size()
size
in interface java.util.Collection
size
in interface java.util.List
size
in class java.util.AbstractCollection
public java.util.Iterator iterator()
iterator
in interface java.lang.Iterable
iterator
in interface java.util.Collection
iterator
in interface java.util.List
iterator
in class java.util.AbstractList
public java.util.ListIterator listIterator()
listIterator
in interface java.util.List
listIterator
in class java.util.AbstractList
public java.util.ListIterator listIterator(int index)
listIterator
in interface java.util.List
listIterator
in class java.util.AbstractList
public java.lang.Object[] toArray()
toArray
in interface java.util.Collection
toArray
in interface java.util.List
toArray
in class java.util.AbstractCollection
public java.lang.Object[] toArray(java.lang.Object[] a)
toArray
in interface java.util.Collection
toArray
in interface java.util.List
toArray
in class java.util.AbstractCollection
Copyright © 1999-2022 The Apache Software Foundation. All Rights Reserved.