Package org.apache.xmlbeans
Interface SchemaAttributeModel
-
- All Known Implementing Classes:
SchemaAttributeModelImpl
public interface SchemaAttributeModel
Represents the attribute structure allowed on a complex type.- See Also:
SchemaType.getAttributeModel()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SchemaLocalAttribute
getAttribute(javax.xml.namespace.QName name)
Returns the attribute with the given name.SchemaLocalAttribute[]
getAttributes()
Returns an array containing all the attributes in the model.int
getWildcardProcess()
QNameSet
getWildcardSet()
QNameSet representing the attribute wildcard specification.
-
-
-
Field Detail
-
NONE
static final int NONE
- See Also:
- Constant Field Values
-
STRICT
static final int STRICT
Strict wildcard processing. SeegetWildcardProcess()
- See Also:
- Constant Field Values
-
LAX
static final int LAX
Lax wildcard processing. SeegetWildcardProcess()
- See Also:
- Constant Field Values
-
SKIP
static final int SKIP
Skip wildcard processing. SeegetWildcardProcess()
- See Also:
- Constant Field Values
-
-
Method Detail
-
getAttributes
SchemaLocalAttribute[] getAttributes()
Returns an array containing all the attributes in the model.
-
getAttribute
SchemaLocalAttribute getAttribute(javax.xml.namespace.QName name)
Returns the attribute with the given name.
-
getWildcardSet
QNameSet getWildcardSet()
QNameSet representing the attribute wildcard specification.
-
getWildcardProcess
int getWildcardProcess()
-
-