Package org.apache.xerces.xs
Interface XSTypeDefinition
-
- All Superinterfaces:
XSObject
- All Known Subinterfaces:
XSComplexTypeDefinition,XSSimpleTypeDefinition
public interface XSTypeDefinition extends XSObject
This interface represents a complex or simple type definition.
-
-
Field Summary
Fields Modifier and Type Field Description static shortCOMPLEX_TYPEThe object describes a complex type.static shortSIMPLE_TYPEThe object describes a simple type.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanderivedFrom(java.lang.String namespace, java.lang.String name, short derivationMethod)Convenience method which checks if this type is derived from the given ancestor type.booleanderivedFromType(XSTypeDefinition ancestorType, short derivationMethod)Convenience method which checks if this type is derived from the givenancestorType.booleangetAnonymous()Convenience attribute.XSTypeDefinitiongetBaseType(){base type definition}: either a simple type definition or a complex type definition.shortgetFinal()For complex types the returned value is a bit combination of the subset of {DERIVATION_EXTENSION, DERIVATION_RESTRICTION} corresponding tofinalset of this type orDERIVATION_NONE.shortgetTypeCategory()Return whether this type definition is a simple type or complex type.booleanisFinal(short restriction){final}.-
Methods inherited from interface org.apache.xerces.xs.XSObject
getName, getNamespace, getNamespaceItem, getType
-
-
-
-
Field Detail
-
COMPLEX_TYPE
static final short COMPLEX_TYPE
The object describes a complex type.- See Also:
- Constant Field Values
-
SIMPLE_TYPE
static final short SIMPLE_TYPE
The object describes a simple type.- See Also:
- Constant Field Values
-
-
Method Detail
-
getTypeCategory
short getTypeCategory()
Return whether this type definition is a simple type or complex type.
-
getBaseType
XSTypeDefinition getBaseType()
{base type definition}: either a simple type definition or a complex type definition.
-
isFinal
boolean isFinal(short restriction)
{final}. For a complex type definition it is a subset of {extension, restriction}. For a simple type definition it is a subset of {extension, list, restriction, union}.- Parameters:
restriction- Extension, restriction, list, union constants (defined inXSConstants).- Returns:
- True if
restrictionis in the final set, otherwise false.
-
getFinal
short getFinal()
For complex types the returned value is a bit combination of the subset of {DERIVATION_EXTENSION, DERIVATION_RESTRICTION} corresponding tofinalset of this type orDERIVATION_NONE. For simple types the returned value is a bit combination of the subset of {DERIVATION_RESTRICTION, DERIVATION_EXTENSION, DERIVATION_UNION, DERIVATION_LIST} corresponding tofinalset of this type orDERIVATION_NONE.
-
getAnonymous
boolean getAnonymous()
Convenience attribute. A boolean that specifies if the type definition is anonymous.
-
derivedFromType
boolean derivedFromType(XSTypeDefinition ancestorType, short derivationMethod)
Convenience method which checks if this type is derived from the givenancestorType.- Parameters:
ancestorType- An ancestor type definition.derivationMethod- A bit combination representing a subset of {DERIVATION_RESTRICTION, DERIVATION_EXTENSION, DERIVATION_UNION, DERIVATION_LIST}.- Returns:
- True if this type is derived from
ancestorTypeusing only derivation methods from thederivationMethod.
-
derivedFrom
boolean derivedFrom(java.lang.String namespace, java.lang.String name, short derivationMethod)Convenience method which checks if this type is derived from the given ancestor type.- Parameters:
namespace- An ancestor type namespace.name- An ancestor type name.derivationMethod- A bit combination representing a subset of {DERIVATION_RESTRICTION, DERIVATION_EXTENSION, DERIVATION_UNION, DERIVATION_LIST}.- Returns:
- True if this type is derived from
ancestorTypeusing only derivation methods from thederivationMethod.
-
-