Interface SchemaType
-
- All Superinterfaces:
SchemaAnnotated,SchemaComponent
- All Known Implementing Classes:
SchemaTypeImpl
public interface SchemaType extends SchemaComponent, SchemaAnnotated
Represents a schema type.SchemaType is the metadata "type" class for
XmlObject, and it plays the analogous role forXmlObjectthatClassplays forObject.Every XML Bean class corresponds to a singleton SchemaType object obtainable by ClassName.type (e.g.,
XmlNonPositiveInteger.type), and every XML Bean instance has an actual SchemaType, obtainable byXmlObject.schemaType(). The ClassName.type and schemaType() mechanisms are analogous to the ordinary Java ClassName.class and obj.getClass() mechanisms.All schema types are represented by a SchemaType, this includes all types regardless of whether they are built-in or user-defined, compiled or uncompiled, simple or complex.
In addition, a compiled XML Bean type system includes special "document" schema types each representing a document containing nothing but a single element for each global element, and special "attribute" schema types each representing a fragment containing nothing but a single global attribute for global attribute.
Do not confuse Schema Types with other types of Schema Components such as
Global Elements,Global Attributes,Named Model Groups, orAttribute Groups. SchemaType represents a Type component, not any of the other kinds of components. There are different kinds of metadata objects for the different Schema components.The space of SchemaTypes is divided as follows:
- First, there is the universal base type and the universal
subtype. These are
XmlObject.type(corresponding to xs:anyType) andXmlBeans.NO_TYPE, respectively. The first type is a base type of all other types. The other type indicates the absence of type information and, at least in set-theoretic terms, is a subtype of all other types. - There is another universal base type that is the base type
for all simple types. This is the
XmlAnySimpleType.type, corresponding to xs:anySimpleType. Only XmlObject.type and XmlAnySimpleType.type returntrueforisURType(), and only XmlBeans.NO_TYPE returnstrueforisNoType(). - The two "special" kinds of types that are generated that
do not formally exist in the actual Schema specification are
document types and global attribute types (corresponding to
documents that contain a global element, or fragments that
contain a global attribute). They can be detected using
isDocumentType()andisAttributeType(). Other than their anonymity (lack of a type name) and their appearance only at the root of an instance, they are otherwise just like ordinary complex types. - Simple types can be detected using
isSimpleType(). Complex types are considered to be all the types that are not simple. - Simple types are divided into three varieties: atomic types,
list types, and union types. Which variety of simple type
you have can be discoverd using
getSimpleVariety(). It will return eitherATOMIC,LIST, orUNION. - An
ATOMICsimple type is always based on one of the 20 built-in primitive schema types. You can determine the underlying primitive type for an atomic simple type by callinggetPrimitiveType(). An atomic type may add facet restrictions on top of the primitive type, and these facets can be explored usinggetFacet(int),getWhiteSpaceRule(),matchPatternFacet(java.lang.String),getEnumerationValues(), and related methods. - A
LISTsimple type is always based on another non-list simple type. The underlying list item type can be obtained by usinggetListItemType(). - A
UNIONsimple type is always composed out of a number of other simple types. The direct members of the union can be obtained bygetUnionMemberTypes(). When unions consist of other unions, it is useful to know useful to know the "leaves of the union tree", so the set of non-union types making up the union can be obtained bygetUnionConstituentTypes(). The closure of the entire "union tree" isgetUnionSubTypes()(this includes the type itself). For simple unions that do not consist of other unions, all three of these sets are the same. - Complex types have nested structure. They are divided into
four content types: empty content, simple content, element-only
content, and mixed content. All kinds of complex types may
have attributes. The content type for a complex type can
be dermined using
getContentType(). This will returnEMPTY_CONTENT,SIMPLE_CONTENT,ELEMENT_CONTENT, orMIXED_CONTENT. - If a complex type has
EMPTY_CONTENT, the content model will be null. - If a complex type has
SIMPLE_CONTENT, then it will extend the simple type that describes the content. In addition, the type may impose additional simple type facet restrictions; these can be determined in the same way they are for a simple type. - If a complex type has
ELEMENT_CONTENTorMIXED_CONTENT, then the detailed content model can be determined by examining the particle tree (which may be null for MIXED_CONTENT). The particle tree can be obtained viagetContentModel(). - When working with a complex type, most users will find it
sufficient to discover the summarized shape of the content model
and attribute model using
getElementProperties(),getAttributeProperties(), and related methods rather than examining the particle tree and attribute model directly.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classSchemaType.RefUsed to allow on-demand loading of types.
-
Field Summary
Fields Modifier and Type Field Description static intATOMICAtomic type.static intBTC_ANY_SIMPLExs:anySimpleType, akaXmlAnySimpleType.typestatic intBTC_ANY_TYPExs:anyType, akaXmlObject.typestatic intBTC_ANY_URIxs:anyURI, akaXmlAnyURI.typestatic intBTC_BASE_64_BINARYxs:base64Binary, akaXmlBase64Binary.typestatic intBTC_BOOLEANxs:boolean, akaXmlBoolean.typestatic intBTC_BYTExs:byte, akaXmlByte.typestatic intBTC_DATExs:date, akaXmlDate.typestatic intBTC_DATE_TIMExs:dateTime, akaXmlDateTime.typestatic intBTC_DECIMALxs:decimal, akaXmlDecimal.typestatic intBTC_DOUBLExs:double, akaXmlDouble.typestatic intBTC_DURATIONxs:duration, akaXmlDuration.typestatic intBTC_ENTITIESxs:ENTITIES, akaXmlENTITIES.typestatic intBTC_ENTITYxs:ENTITY, akaXmlENTITY.typestatic intBTC_FIRST_PRIMITIVEThe primitive types have codes between BTC_FIRST_PRIMITIVE and BTC_LAST_PRIMITIVE inclusivestatic intBTC_FLOATxs:float, akaXmlFloat.typestatic intBTC_G_DAYxs:gDay, akaXmlGDay.typestatic intBTC_G_MONTHxs:gMonth, akaXmlGMonth.typestatic intBTC_G_MONTH_DAYxs:gMonthDay, akaXmlGMonthDay.typestatic intBTC_G_YEARxs:gYear, akaXmlGYear.typestatic intBTC_G_YEAR_MONTHxs:gYearMonth, akaXmlGYearMonth.typestatic intBTC_HEX_BINARYxs:hexBinary, akaXmlBase64Binary.typestatic intBTC_IDxs:ID, akaXmlID.typestatic intBTC_IDREFxs:IDREF, akaXmlIDREF.typestatic intBTC_IDREFSxs:IDREFS, akaXmlIDREFS.typestatic intBTC_INTxs:int, akaXmlInt.typestatic intBTC_INTEGERxs:integer, akaXmlInteger.typestatic intBTC_LANGUAGExs:language, akaXmlLanguage.typestatic intBTC_LAST_BUILTINstatic intBTC_LAST_PRIMITIVEThe primitive types have codes between BTC_FIRST_PRIMITIVE and BTC_LAST_PRIMITIVE inclusivestatic intBTC_LONGxs:long, akaXmlLong.typestatic intBTC_NAMExs:Name, akaXmlName.typestatic intBTC_NCNAMExs:NCName, akaXmlNCName.typestatic intBTC_NEGATIVE_INTEGERxs:NegativeInteger, akaXmlNegativeInteger.typestatic intBTC_NMTOKENxs:NMTOKEN, akaXmlNMTOKEN.typestatic intBTC_NMTOKENSxs:NMTOKENS, akaXmlNMTOKENS.typestatic intBTC_NON_NEGATIVE_INTEGERxs:nonNegativeInteger, akaXmlNonNegativeInteger.typestatic intBTC_NON_POSITIVE_INTEGERxs:nonPositiveInteger, akaXmlNonPositiveInteger.typestatic intBTC_NORMALIZED_STRINGxs:normalizedString, akaXmlNormalizedString.typestatic intBTC_NOT_BUILTINNot a builtin typestatic intBTC_NOTATIONxs:NOTATION, akaXmlNOTATION.typestatic intBTC_POSITIVE_INTEGERxs:positiveInteger, akaXmlPositiveInteger.typestatic intBTC_QNAMExs:QName, akaXmlQName.typestatic intBTC_SHORTxs:short, akaXmlShort.typestatic intBTC_STRINGxs:string, akaXmlString.typestatic intBTC_TIMExs:time, akaXmlTime.typestatic intBTC_TOKENxs:token, akaXmlToken.typestatic intBTC_UNSIGNED_BYTExs:unsignedByte, akaXmlUnsignedByte.typestatic intBTC_UNSIGNED_INTxs:unsignedInt, akaXmlUnsignedInt.typestatic intBTC_UNSIGNED_LONGxs:unsignedLong, akaXmlUnsignedLong.typestatic intBTC_UNSIGNED_SHORTxs:unsignedShort, akaXmlUnsignedShort.typestatic intDT_EXTENSIONDerived by extension.static intDT_NOT_DERIVEDNot derived.static intDT_RESTRICTIONDerived by restriction.static intELEMENT_CONTENTElement-only content.static intEMPTY_CONTENTEmpty content.static intFACET_ENUMERATIONxs:enumeration facet - usegetEnumerationValues()insteadstatic intFACET_FRACTION_DIGITSxs:fractionDigits facetstatic intFACET_LENGTHxs:length facetstatic intFACET_MAX_EXCLUSIVExs:maxExclusive facetstatic intFACET_MAX_INCLUSIVExs:maxInclusive facetstatic intFACET_MAX_LENGTHxs:maxLength facetstatic intFACET_MIN_EXCLUSIVExs:minExclusive facetstatic intFACET_MIN_INCLUSIVExs:minInclusive facetstatic intFACET_MIN_LENGTHxs:minLength facetstatic intFACET_PATTERNxs:pattern facet - usematchPatternFacet(java.lang.String)insteadstatic intFACET_TOTAL_DIGITSxs:totalDigits facetstatic intFACET_WHITE_SPACExs:whiteSpace facet - usegetWhiteSpaceRule()insteadstatic intLAST_BASIC_FACETstatic intLAST_FACETThe last ordinary facet codestatic intLAST_PROPERTYThe last property codestatic intLISTSimple list type.static intMIXED_CONTENTMixed content.static intNOT_COMPLEX_TYPENot a complex type.static intNOT_DECIMALNot a decimal restriction.static intNOT_SIMPLENot a simple type or simple content.static intPARTIAL_ORDERPartially ordered.static intPROPERTY_BOUNDEDstatic intPROPERTY_CARDINALITYstatic intPROPERTY_NUMERICstatic intPROPERTY_ORDEREDstatic intSIMPLE_CONTENTSimple content.static intSIZE_BIG_DECIMALFits in aBigDecimal.static intSIZE_BIG_INTEGERFits in aBigInteger.static intSIZE_BYTEFits in a byte.static intSIZE_INTFits in an int.static intSIZE_LONGFits in a long.static intSIZE_SHORTFits in a short.static intTOTAL_ORDERTotally ordered.static intUNIONUnion type.static intUNORDEREDUnordered.static intWS_COLLAPSEWhitespace collapsed and trimmed.static intWS_PRESERVEWhitespace preserved.static intWS_REPLACEWhitespace replaced by ordinary space.static intWS_UNSPECIFIEDWhitespace rule unspecified.-
Fields inherited from interface org.apache.xmlbeans.SchemaComponent
ANNOTATION, ATTRIBUTE, ATTRIBUTE_GROUP, ELEMENT, IDENTITY_CONSTRAINT, MODEL_GROUP, NOTATION, TYPE
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanblockExtension()True if extensions of this type cannot be substituted for this typebooleanblockRestriction()True if restrictions of this type cannot be substituted for this typeSchemaStringEnumEntryenumEntryForString(String s)Returns the string enum entry corresponding to the given enumerated string, or null if there is no match or this type is not a string enumeration.StringEnumAbstractBaseenumForInt(int i)Returns the string enum value corresponding to the given enumerated string, or null if there is no match or this type is not a string enumeration.StringEnumAbstractBaseenumForString(String s)Returns the string enum value corresponding to the given enumerated string, or null if there is no match or this type is not a string enumeration.booleanfinalExtension()True if other types cannot extend this type (only for complex types)booleanfinalList()True if list derivation of this type is prohibited (only for simple types)booleanfinalRestriction()True if other types cannot restrict this typebooleanfinalUnion()True if union derivation of this type is prohibited (only for simple types)SchemaType[]getAnonymousTypes()The array of inner (anonymous) types defined within this type.intgetAnonymousUnionMemberOrdinal()For anonymous types defined inside a union only: gets the integer indicating the declaration order of this type within the outer union type, or zero if this is not applicable.SchemaAttributeModelgetAttributeModel()Returns the attribute model for this complex type (with simple or complex content).SchemaProperty[]getAttributeProperties()Returns all the SchemaProperties corresponding to attributes.SchemaPropertygetAttributeProperty(QName attrName)Returns a SchemaProperty corresponding to an attribute within this complex type by looking up the attribute name.SchemaTypegetAttributeType(QName eltName, SchemaTypeLoader wildcardTypeLoader)Returns the type of an attribute based on the attribute name and the type system within which (wildcard) names are resolved.QNamegetAttributeTypeAttributeName()Returns the attribute qname if this is a attribute type, or null otherwise.SchemaTypegetBaseEnumType()If this is a string enumeration, returns the most basic base schema type that this enuemration is based on.SchemaTypegetBaseType()Returns base restriction or extension type.intgetBuiltinTypeCode()Returns an integer for builtin types that can be used for quick comparison.SchemaTypegetCommonBaseType(SchemaType type)Returns common base type with the given type.SchemaFieldgetContainerField()The parent schema element.SchemaTypegetContentBasedOnType()For complex types with simple content returns the base type for this type's content.SchemaParticlegetContentModel()Returns the complex content model for this complex type (with complex content).intgetContentType()intgetDecimalSize()For atomic numeric restrictions of decimal only: the numeric size category.intgetDerivationType()SchemaProperty[]getDerivedProperties()Returns the SchemaProperties defined by this complex type, exclusive of the base type (if any).StringgetDocumentation()returns user specified documentationQNamegetDocumentElementName()Returns the document element name if this is a document type, or null otherwise.SchemaProperty[]getElementProperties()Returns all the SchemaProperties corresponding to elements.SchemaPropertygetElementProperty(QName eltName)Returns a SchemaProperty corresponding to an element within this complex type by looking up the element name.SchemaTypeElementSequencergetElementSequencer()Returns aSchemaTypeElementSequencerobject, which can then be used to validate complex content inside this element.SchemaTypegetElementType(QName eltName, QName xsiType, SchemaTypeLoader wildcardTypeLoader)Returns the type of a child element based on the element name and an xsi:type attribute (and the type system within which names are resolved).XmlAnySimpleType[]getEnumerationValues()Returns the array of valid objects from the enumeration facet, null if no enumeration defined.Class<? extends StringEnumAbstractBase>getEnumJavaClass()The Java class corresponding to the enumeration type for this schema type, if applicable (or null if not an enumeration).XmlAnySimpleTypegetFacet(int facetCode)Returns the value of the given facet, or null if none is set.StringgetFullJavaImplName()The fully-qualified Java type name of the implementation class.StringgetFullJavaName()The fully-qualified Java type name of the class.Class<? extends XmlObject>getJavaClass()The Java class corresponding to this schema type.SchemaTypegetListItemType()For list types only: get the item type.QNamegetName()The name used to describe the type in the schema.SchemaTypegetOuterType()The outer schema type.String[]getPatterns()TrueSchemaTypegetPrimitiveType()For atomic types only: get the primitive type underlying this one.SchemaProperty[]getProperties()Returns all the SchemaProperties within this complex type, elements followed by attributes.SchemaType.RefgetRef()Retruns a SchemaType.Ref pointing to this schema type itself.StringgetShortJavaImplName()The short unqualfiied Java name for the implementation class.StringgetShortJavaName()The short unqualfiied Java name for the class.intgetSimpleVariety()Returns whether the simple type is ATOMIC, UNION, or LIST.SchemaStringEnumEntry[]getStringEnumEntries()Returns the array of SchemaStringEnumEntries for this type: this array includes information about the java constant names used for each string enum entry.SchemaTypeSystemgetTypeSystem()Returns the SchemaTypeLoader in which this type was defined.SchemaTypegetUnionCommonBaseType()For union types only: get the most specific common base type of the constituent member types.SchemaType[]getUnionConstituentTypes()For union types only: get the constituent member types.SchemaType[]getUnionMemberTypes()For union types only: get the shallow member types.SchemaType[]getUnionSubTypes()For union types only: gets the full tree of member types.ObjectgetUserData()Returns user-specific information.intgetWhiteSpaceRule()For nonunion simple types: get the whitespace rule.booleanhasAllContent()True if the complex content model for this complex type is an "all" group.booleanhasAttributeWildcards()True if this type permits wildcard attributes.booleanhasElementWildcards()True if this type permits element wildcards.booleanhasPatternFacet()True if there are regex pattern facentsbooleanhasStringEnumValues()True if this is a string enum where an integer is assigned to each enumerated value.booleanisAbstract()True if this type cannot be used directly in instancesbooleanisAnonymousType()True if the Xsd type is anonymous (i.e., not top-level).booleanisAssignableFrom(SchemaType type)True if the specified type derives from this type (or if it is the same type).booleanisAttributeType()True if this is a attribute type.booleanisBounded()True if bounded.booleanisBuiltinType()True for any of the 40+ built-in types.booleanisCompiled()True if this schema type was compiled to have a corresponding Java class.booleanisDocumentType()True if this is a document type.booleanisFacetFixed(int facetCode)True if the given facet is fixed.booleanisFinite()True if finite.booleanisNoType()True for the type object that represents a the absence of a determined type.booleanisNumeric()True if numeric.booleanisOrderSensitive()True if particles have same defaults, nillability, etc, that are invariant when order changes.booleanisPrimitiveType()True for any of the 20 primitive types (plus anySimpleType)booleanisSimpleType()True for the anySimpleType and any restrictions/unions/lists.booleanisSkippedAnonymousType()True if this anonymous type has no corresponding Java type.booleanisURType()True for anyType and anySimpleType.booleanisValidSubstitution(QName name)For document types, true if the given name can be substituted for the document element name.booleanmatchPatternFacet(String s)True if the given string matches the pattern facets.XmlAnySimpleTypenewValue(Object v)Creates an immutable simple type value that does not reside in a tree.intordered()True if ordered.QNameSetqnameSetForWildcardAttributes()Returns a QNameSet of attributes that may exist in wildcard buchets and are not explicitly defined in this schema type.QNameSetqnameSetForWildcardElements()Returns a QNameSet of elements that may exist in wildcard buchets and are not explicitly defined in this schema type.-
Methods inherited from interface org.apache.xmlbeans.SchemaAnnotated
getAnnotation
-
Methods inherited from interface org.apache.xmlbeans.SchemaComponent
getComponentRef, getComponentType, getSourceName
-
-
-
-
Field Detail
-
DT_NOT_DERIVED
static final int DT_NOT_DERIVED
Not derived. True for XmlObject.type only. SeegetDerivationType().- See Also:
- Constant Field Values
-
DT_RESTRICTION
static final int DT_RESTRICTION
Derived by restriction. SeegetDerivationType().- See Also:
- Constant Field Values
-
DT_EXTENSION
static final int DT_EXTENSION
Derived by extension. SeegetDerivationType().- See Also:
- Constant Field Values
-
BTC_NOT_BUILTIN
static final int BTC_NOT_BUILTIN
Not a builtin type- See Also:
- Constant Field Values
-
BTC_ANY_TYPE
static final int BTC_ANY_TYPE
xs:anyType, akaXmlObject.type- See Also:
- Constant Field Values
-
BTC_FIRST_PRIMITIVE
static final int BTC_FIRST_PRIMITIVE
The primitive types have codes between BTC_FIRST_PRIMITIVE and BTC_LAST_PRIMITIVE inclusive- See Also:
- Constant Field Values
-
BTC_ANY_SIMPLE
static final int BTC_ANY_SIMPLE
xs:anySimpleType, akaXmlAnySimpleType.type- See Also:
- Constant Field Values
-
BTC_BOOLEAN
static final int BTC_BOOLEAN
xs:boolean, akaXmlBoolean.type- See Also:
- Constant Field Values
-
BTC_BASE_64_BINARY
static final int BTC_BASE_64_BINARY
xs:base64Binary, akaXmlBase64Binary.type- See Also:
- Constant Field Values
-
BTC_HEX_BINARY
static final int BTC_HEX_BINARY
xs:hexBinary, akaXmlBase64Binary.type- See Also:
- Constant Field Values
-
BTC_ANY_URI
static final int BTC_ANY_URI
xs:anyURI, akaXmlAnyURI.type- See Also:
- Constant Field Values
-
BTC_QNAME
static final int BTC_QNAME
xs:QName, akaXmlQName.type- See Also:
- Constant Field Values
-
BTC_NOTATION
static final int BTC_NOTATION
xs:NOTATION, akaXmlNOTATION.type- See Also:
- Constant Field Values
-
BTC_FLOAT
static final int BTC_FLOAT
xs:float, akaXmlFloat.type- See Also:
- Constant Field Values
-
BTC_DOUBLE
static final int BTC_DOUBLE
xs:double, akaXmlDouble.type- See Also:
- Constant Field Values
-
BTC_DECIMAL
static final int BTC_DECIMAL
xs:decimal, akaXmlDecimal.type- See Also:
- Constant Field Values
-
BTC_STRING
static final int BTC_STRING
xs:string, akaXmlString.type- See Also:
- Constant Field Values
-
BTC_DURATION
static final int BTC_DURATION
xs:duration, akaXmlDuration.type- See Also:
- Constant Field Values
-
BTC_DATE_TIME
static final int BTC_DATE_TIME
xs:dateTime, akaXmlDateTime.type- See Also:
- Constant Field Values
-
BTC_TIME
static final int BTC_TIME
xs:time, akaXmlTime.type- See Also:
- Constant Field Values
-
BTC_DATE
static final int BTC_DATE
xs:date, akaXmlDate.type- See Also:
- Constant Field Values
-
BTC_G_YEAR_MONTH
static final int BTC_G_YEAR_MONTH
xs:gYearMonth, akaXmlGYearMonth.type- See Also:
- Constant Field Values
-
BTC_G_YEAR
static final int BTC_G_YEAR
xs:gYear, akaXmlGYear.type- See Also:
- Constant Field Values
-
BTC_G_MONTH_DAY
static final int BTC_G_MONTH_DAY
xs:gMonthDay, akaXmlGMonthDay.type- See Also:
- Constant Field Values
-
BTC_G_DAY
static final int BTC_G_DAY
xs:gDay, akaXmlGDay.type- See Also:
- Constant Field Values
-
BTC_G_MONTH
static final int BTC_G_MONTH
xs:gMonth, akaXmlGMonth.type- See Also:
- Constant Field Values
-
BTC_LAST_PRIMITIVE
static final int BTC_LAST_PRIMITIVE
The primitive types have codes between BTC_FIRST_PRIMITIVE and BTC_LAST_PRIMITIVE inclusive- See Also:
- Constant Field Values
-
BTC_INTEGER
static final int BTC_INTEGER
xs:integer, akaXmlInteger.type- See Also:
- Constant Field Values
-
BTC_LONG
static final int BTC_LONG
xs:long, akaXmlLong.type- See Also:
- Constant Field Values
-
BTC_INT
static final int BTC_INT
xs:int, akaXmlInt.type- See Also:
- Constant Field Values
-
BTC_SHORT
static final int BTC_SHORT
xs:short, akaXmlShort.type- See Also:
- Constant Field Values
-
BTC_BYTE
static final int BTC_BYTE
xs:byte, akaXmlByte.type- See Also:
- Constant Field Values
-
BTC_NON_POSITIVE_INTEGER
static final int BTC_NON_POSITIVE_INTEGER
xs:nonPositiveInteger, akaXmlNonPositiveInteger.type- See Also:
- Constant Field Values
-
BTC_NEGATIVE_INTEGER
static final int BTC_NEGATIVE_INTEGER
xs:NegativeInteger, akaXmlNegativeInteger.type- See Also:
- Constant Field Values
-
BTC_NON_NEGATIVE_INTEGER
static final int BTC_NON_NEGATIVE_INTEGER
xs:nonNegativeInteger, akaXmlNonNegativeInteger.type- See Also:
- Constant Field Values
-
BTC_POSITIVE_INTEGER
static final int BTC_POSITIVE_INTEGER
xs:positiveInteger, akaXmlPositiveInteger.type- See Also:
- Constant Field Values
-
BTC_UNSIGNED_LONG
static final int BTC_UNSIGNED_LONG
xs:unsignedLong, akaXmlUnsignedLong.type- See Also:
- Constant Field Values
-
BTC_UNSIGNED_INT
static final int BTC_UNSIGNED_INT
xs:unsignedInt, akaXmlUnsignedInt.type- See Also:
- Constant Field Values
-
BTC_UNSIGNED_SHORT
static final int BTC_UNSIGNED_SHORT
xs:unsignedShort, akaXmlUnsignedShort.type- See Also:
- Constant Field Values
-
BTC_UNSIGNED_BYTE
static final int BTC_UNSIGNED_BYTE
xs:unsignedByte, akaXmlUnsignedByte.type- See Also:
- Constant Field Values
-
BTC_NORMALIZED_STRING
static final int BTC_NORMALIZED_STRING
xs:normalizedString, akaXmlNormalizedString.type- See Also:
- Constant Field Values
-
BTC_TOKEN
static final int BTC_TOKEN
xs:token, akaXmlToken.type- See Also:
- Constant Field Values
-
BTC_NAME
static final int BTC_NAME
xs:Name, akaXmlName.type- See Also:
- Constant Field Values
-
BTC_NCNAME
static final int BTC_NCNAME
xs:NCName, akaXmlNCName.type- See Also:
- Constant Field Values
-
BTC_LANGUAGE
static final int BTC_LANGUAGE
xs:language, akaXmlLanguage.type- See Also:
- Constant Field Values
-
BTC_ID
static final int BTC_ID
xs:ID, akaXmlID.type- See Also:
- Constant Field Values
-
BTC_IDREF
static final int BTC_IDREF
xs:IDREF, akaXmlIDREF.type- See Also:
- Constant Field Values
-
BTC_IDREFS
static final int BTC_IDREFS
xs:IDREFS, akaXmlIDREFS.type- See Also:
- Constant Field Values
-
BTC_ENTITY
static final int BTC_ENTITY
xs:ENTITY, akaXmlENTITY.type- See Also:
- Constant Field Values
-
BTC_ENTITIES
static final int BTC_ENTITIES
xs:ENTITIES, akaXmlENTITIES.type- See Also:
- Constant Field Values
-
BTC_NMTOKEN
static final int BTC_NMTOKEN
xs:NMTOKEN, akaXmlNMTOKEN.type- See Also:
- Constant Field Values
-
BTC_NMTOKENS
static final int BTC_NMTOKENS
xs:NMTOKENS, akaXmlNMTOKENS.type- See Also:
- Constant Field Values
-
BTC_LAST_BUILTIN
static final int BTC_LAST_BUILTIN
- See Also:
- Constant Field Values
-
NOT_COMPLEX_TYPE
static final int NOT_COMPLEX_TYPE
Not a complex type. SeegetContentType().- See Also:
- Constant Field Values
-
EMPTY_CONTENT
static final int EMPTY_CONTENT
Empty content. SeegetContentType().- See Also:
- Constant Field Values
-
SIMPLE_CONTENT
static final int SIMPLE_CONTENT
Simple content. SeegetContentType().- See Also:
- Constant Field Values
-
ELEMENT_CONTENT
static final int ELEMENT_CONTENT
Element-only content. SeegetContentType().- See Also:
- Constant Field Values
-
MIXED_CONTENT
static final int MIXED_CONTENT
Mixed content. SeegetContentType().- See Also:
- Constant Field Values
-
FACET_LENGTH
static final int FACET_LENGTH
xs:length facet- See Also:
- Constant Field Values
-
FACET_MIN_LENGTH
static final int FACET_MIN_LENGTH
xs:minLength facet- See Also:
- Constant Field Values
-
FACET_MAX_LENGTH
static final int FACET_MAX_LENGTH
xs:maxLength facet- See Also:
- Constant Field Values
-
FACET_MIN_EXCLUSIVE
static final int FACET_MIN_EXCLUSIVE
xs:minExclusive facet- See Also:
- Constant Field Values
-
FACET_MIN_INCLUSIVE
static final int FACET_MIN_INCLUSIVE
xs:minInclusive facet- See Also:
- Constant Field Values
-
FACET_MAX_INCLUSIVE
static final int FACET_MAX_INCLUSIVE
xs:maxInclusive facet- See Also:
- Constant Field Values
-
FACET_MAX_EXCLUSIVE
static final int FACET_MAX_EXCLUSIVE
xs:maxExclusive facet- See Also:
- Constant Field Values
-
FACET_TOTAL_DIGITS
static final int FACET_TOTAL_DIGITS
xs:totalDigits facet- See Also:
- Constant Field Values
-
FACET_FRACTION_DIGITS
static final int FACET_FRACTION_DIGITS
xs:fractionDigits facet- See Also:
- Constant Field Values
-
LAST_BASIC_FACET
static final int LAST_BASIC_FACET
- See Also:
- Constant Field Values
-
FACET_WHITE_SPACE
static final int FACET_WHITE_SPACE
xs:whiteSpace facet - usegetWhiteSpaceRule()instead- See Also:
- Constant Field Values
-
FACET_PATTERN
static final int FACET_PATTERN
xs:pattern facet - usematchPatternFacet(java.lang.String)instead- See Also:
- Constant Field Values
-
FACET_ENUMERATION
static final int FACET_ENUMERATION
xs:enumeration facet - usegetEnumerationValues()instead- See Also:
- Constant Field Values
-
LAST_FACET
static final int LAST_FACET
The last ordinary facet code- See Also:
- Constant Field Values
-
PROPERTY_ORDERED
static final int PROPERTY_ORDERED
- See Also:
ordered(), Constant Field Values
-
PROPERTY_BOUNDED
static final int PROPERTY_BOUNDED
- See Also:
isBounded(), Constant Field Values
-
PROPERTY_CARDINALITY
static final int PROPERTY_CARDINALITY
- See Also:
isFinite(), Constant Field Values
-
PROPERTY_NUMERIC
static final int PROPERTY_NUMERIC
- See Also:
isNumeric(), Constant Field Values
-
LAST_PROPERTY
static final int LAST_PROPERTY
The last property code- See Also:
- Constant Field Values
-
UNORDERED
static final int UNORDERED
Unordered. Seeordered().- See Also:
- Constant Field Values
-
PARTIAL_ORDER
static final int PARTIAL_ORDER
Partially ordered. Seeordered().- See Also:
- Constant Field Values
-
TOTAL_ORDER
static final int TOTAL_ORDER
Totally ordered. Seeordered().- See Also:
- Constant Field Values
-
NOT_SIMPLE
static final int NOT_SIMPLE
Not a simple type or simple content. SeegetSimpleVariety().- See Also:
- Constant Field Values
-
ATOMIC
static final int ATOMIC
Atomic type. SeegetSimpleVariety()- See Also:
- Constant Field Values
-
UNION
static final int UNION
Union type. SeegetSimpleVariety()- See Also:
- Constant Field Values
-
LIST
static final int LIST
Simple list type. SeegetSimpleVariety()- See Also:
- Constant Field Values
-
NOT_DECIMAL
static final int NOT_DECIMAL
Not a decimal restriction. SeegetDecimalSize().- See Also:
- Constant Field Values
-
SIZE_BYTE
static final int SIZE_BYTE
Fits in a byte. SeegetDecimalSize().- See Also:
- Constant Field Values
-
SIZE_SHORT
static final int SIZE_SHORT
Fits in a short. SeegetDecimalSize().- See Also:
- Constant Field Values
-
SIZE_INT
static final int SIZE_INT
Fits in an int. SeegetDecimalSize().- See Also:
- Constant Field Values
-
SIZE_LONG
static final int SIZE_LONG
Fits in a long. SeegetDecimalSize().- See Also:
- Constant Field Values
-
SIZE_BIG_INTEGER
static final int SIZE_BIG_INTEGER
Fits in aBigInteger. SeegetDecimalSize().- See Also:
- Constant Field Values
-
SIZE_BIG_DECIMAL
static final int SIZE_BIG_DECIMAL
Fits in aBigDecimal. SeegetDecimalSize().- See Also:
- Constant Field Values
-
WS_UNSPECIFIED
static final int WS_UNSPECIFIED
Whitespace rule unspecified. SeegetWhiteSpaceRule().- See Also:
- Constant Field Values
-
WS_PRESERVE
static final int WS_PRESERVE
Whitespace preserved. SeegetWhiteSpaceRule().- See Also:
- Constant Field Values
-
WS_REPLACE
static final int WS_REPLACE
Whitespace replaced by ordinary space. SeegetWhiteSpaceRule().- See Also:
- Constant Field Values
-
WS_COLLAPSE
static final int WS_COLLAPSE
Whitespace collapsed and trimmed. SeegetWhiteSpaceRule().- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
QName getName()
The name used to describe the type in the schema. Null if the type is anonymous (nested), or if it is a document type.- Specified by:
getNamein interfaceSchemaComponent
-
getContainerField
SchemaField getContainerField()
The parent schema element. Null for top-level (named) types and document types.
-
isDocumentType
boolean isDocumentType()
True if this is a document type.Document types are generated for every global element. A document type is an unnamed complex type that contains exactly one element: we define these types, because they are the types of the "documents" which contain the defined global elements, and they all turn into Java types. (Named ElementnameDocument.)
-
isAttributeType
boolean isAttributeType()
True if this is a attribute type.Attribute types are generated for every global attribute. An attribute type is an unnamed complex type that contains exactly one attribute: we define these types, because they are the types of the "attribute documents" which contain the defined global attribute, and they all turn into Java types. (Named AttributenameAttribute.)
-
getDocumentElementName
QName getDocumentElementName()
Returns the document element name if this is a document type, or null otherwise.
-
getAttributeTypeAttributeName
QName getAttributeTypeAttributeName()
Returns the attribute qname if this is a attribute type, or null otherwise.
-
getOuterType
SchemaType getOuterType()
The outer schema type. Null for top-level (named) types.
-
isSkippedAnonymousType
boolean isSkippedAnonymousType()
True if this anonymous type has no corresponding Java type. True for anonymous types nested within simple type restrictions.
-
isCompiled
boolean isCompiled()
True if this schema type was compiled to have a corresponding Java class.
-
getFullJavaName
String getFullJavaName()
The fully-qualified Java type name of the class.
-
getShortJavaName
String getShortJavaName()
The short unqualfiied Java name for the class.
-
getFullJavaImplName
String getFullJavaImplName()
The fully-qualified Java type name of the implementation class.
-
getShortJavaImplName
String getShortJavaImplName()
The short unqualfiied Java name for the implementation class.
-
getJavaClass
Class<? extends XmlObject> getJavaClass()
The Java class corresponding to this schema type.
-
getEnumJavaClass
Class<? extends StringEnumAbstractBase> getEnumJavaClass()
The Java class corresponding to the enumeration type for this schema type, if applicable (or null if not an enumeration).
-
getUserData
Object getUserData()
Returns user-specific information.- See Also:
SchemaBookmark
-
isAnonymousType
boolean isAnonymousType()
True if the Xsd type is anonymous (i.e., not top-level).
-
isBuiltinType
boolean isBuiltinType()
True for any of the 40+ built-in types.
-
isSimpleType
boolean isSimpleType()
True for the anySimpleType and any restrictions/unions/lists.
-
getBaseType
SchemaType getBaseType()
Returns base restriction or extension type. Unions and lists return the anySimpleType.
-
getCommonBaseType
SchemaType getCommonBaseType(SchemaType type)
Returns common base type with the given type. The returned type is the most specific declared base type of both types.
-
isAssignableFrom
boolean isAssignableFrom(SchemaType type)
True if the specified type derives from this type (or if it is the same type).Note that XmlObject.type (the anyType) is assignable from all type, and the XmlBeans.noType (the absence of a type) is assignable to all types.
-
getDerivationType
int getDerivationType()
-
getBuiltinTypeCode
int getBuiltinTypeCode()
Returns an integer for builtin types that can be used for quick comparison.
-
isURType
boolean isURType()
True for anyType and anySimpleType.
-
isNoType
boolean isNoType()
True for the type object that represents a the absence of a determined type. XML Objects whose type isNoType() are never valid.
-
getTypeSystem
SchemaTypeSystem getTypeSystem()
Returns the SchemaTypeLoader in which this type was defined. Complex types are defined and used in exactly one schema type system, but simple types are defined in one type system and can be used in any number of type systems. The most common case is the builtin types, which are defined in the builtin type system and used elsewhere.- Specified by:
getTypeSystemin interfaceSchemaComponent
-
isAbstract
boolean isAbstract()
True if this type cannot be used directly in instances
-
finalExtension
boolean finalExtension()
True if other types cannot extend this type (only for complex types)
-
finalRestriction
boolean finalRestriction()
True if other types cannot restrict this type
-
finalList
boolean finalList()
True if list derivation of this type is prohibited (only for simple types)
-
finalUnion
boolean finalUnion()
True if union derivation of this type is prohibited (only for simple types)
-
blockExtension
boolean blockExtension()
True if extensions of this type cannot be substituted for this type
-
blockRestriction
boolean blockRestriction()
True if restrictions of this type cannot be substituted for this type
-
getContentType
int getContentType()
ReturnsEMPTY_CONTENT,SIMPLE_CONTENT,ELEMENT_CONTENT, orMIXED_CONTENTfor complex types. For noncomplex types, returnsNOT_COMPLEX_TYPE.
-
getContentBasedOnType
SchemaType getContentBasedOnType()
For complex types with simple content returns the base type for this type's content. In most cases, this is the same as the base type, but it can also be an anonymous type.
-
getElementSequencer
SchemaTypeElementSequencer getElementSequencer()
Returns aSchemaTypeElementSequencerobject, which can then be used to validate complex content inside this element. This is useful for example for trying out different names and see which one would be valid as a child of this element.
-
getAnonymousTypes
SchemaType[] getAnonymousTypes()
The array of inner (anonymous) types defined within this type.
-
getElementProperty
SchemaProperty getElementProperty(QName eltName)
Returns a SchemaProperty corresponding to an element within this complex type by looking up the element name.
-
getElementProperties
SchemaProperty[] getElementProperties()
Returns all the SchemaProperties corresponding to elements.
-
getAttributeProperty
SchemaProperty getAttributeProperty(QName attrName)
Returns a SchemaProperty corresponding to an attribute within this complex type by looking up the attribute name.
-
getAttributeProperties
SchemaProperty[] getAttributeProperties()
Returns all the SchemaProperties corresponding to attributes.
-
getProperties
SchemaProperty[] getProperties()
Returns all the SchemaProperties within this complex type, elements followed by attributes.
-
getDerivedProperties
SchemaProperty[] getDerivedProperties()
Returns the SchemaProperties defined by this complex type, exclusive of the base type (if any).
-
getAttributeModel
SchemaAttributeModel getAttributeModel()
Returns the attribute model for this complex type (with simple or complex content).
-
hasAttributeWildcards
boolean hasAttributeWildcards()
True if this type permits wildcard attributes. See the attribute model for more information about which wildcards are allowed.
-
getContentModel
SchemaParticle getContentModel()
Returns the complex content model for this complex type (with complex content).
-
hasElementWildcards
boolean hasElementWildcards()
True if this type permits element wildcards. See the content model for more information about which wildcards are allowed, and where.
-
isValidSubstitution
boolean isValidSubstitution(QName name)
For document types, true if the given name can be substituted for the document element name.
-
hasAllContent
boolean hasAllContent()
True if the complex content model for this complex type is an "all" group.
-
isOrderSensitive
boolean isOrderSensitive()
True if particles have same defaults, nillability, etc, that are invariant when order changes. Computed only for Javaized types.
-
getElementType
SchemaType getElementType(QName eltName, QName xsiType, SchemaTypeLoader wildcardTypeLoader)
Returns the type of a child element based on the element name and an xsi:type attribute (and the type system within which names are resolved).
-
getAttributeType
SchemaType getAttributeType(QName eltName, SchemaTypeLoader wildcardTypeLoader)
Returns the type of an attribute based on the attribute name and the type system within which (wildcard) names are resolved.
-
getFacet
XmlAnySimpleType getFacet(int facetCode)
Returns the value of the given facet, or null if none is set.
-
isFacetFixed
boolean isFacetFixed(int facetCode)
True if the given facet is fixed.
-
ordered
int ordered()
-
isBounded
boolean isBounded()
True if bounded.
-
isFinite
boolean isFinite()
True if finite.
-
isNumeric
boolean isNumeric()
True if numeric.
-
hasPatternFacet
boolean hasPatternFacet()
True if there are regex pattern facents
-
getPatterns
String[] getPatterns()
True
-
matchPatternFacet
boolean matchPatternFacet(String s)
True if the given string matches the pattern facets. Always true if there are no pattern facets.
-
getEnumerationValues
XmlAnySimpleType[] getEnumerationValues()
Returns the array of valid objects from the enumeration facet, null if no enumeration defined.
-
hasStringEnumValues
boolean hasStringEnumValues()
True if this is a string enum where an integer is assigned to each enumerated value.
-
getBaseEnumType
SchemaType getBaseEnumType()
If this is a string enumeration, returns the most basic base schema type that this enuemration is based on. Otherwise returns null.
-
getStringEnumEntries
SchemaStringEnumEntry[] getStringEnumEntries()
Returns the array of SchemaStringEnumEntries for this type: this array includes information about the java constant names used for each string enum entry.
-
enumEntryForString
SchemaStringEnumEntry enumEntryForString(String s)
Returns the string enum entry corresponding to the given enumerated string, or null if there is no match or this type is not a string enumeration.
-
enumForString
StringEnumAbstractBase enumForString(String s)
Returns the string enum value corresponding to the given enumerated string, or null if there is no match or this type is not a string enumeration.
-
enumForInt
StringEnumAbstractBase enumForInt(int i)
Returns the string enum value corresponding to the given enumerated string, or null if there is no match or this type is not a string enumeration.
-
isPrimitiveType
boolean isPrimitiveType()
True for any of the 20 primitive types (plus anySimpleType)
-
getSimpleVariety
int getSimpleVariety()
Returns whether the simple type is ATOMIC, UNION, or LIST. ReturnsNOT_SIMPLE,ATOMIC,UNION, orLIST.
-
getPrimitiveType
SchemaType getPrimitiveType()
For atomic types only: get the primitive type underlying this one.Returns null if this is not an atomic type.
-
getDecimalSize
int getDecimalSize()
For atomic numeric restrictions of decimal only: the numeric size category. Takes into account min and max restrictions as well as totalDigits and fractionDigits facets.Returns either
NOT_DECIMAL,SIZE_BYTE,SIZE_SHORT,SIZE_INT,SIZE_LONG,SIZE_BIG_INTEGER, orSIZE_BIG_DECIMAL.
-
getUnionMemberTypes
SchemaType[] getUnionMemberTypes()
For union types only: get the shallow member types. This returns the declared member types of the union, so, for example if the type contains another union, the nested members of that union are NOT returned here.Returns null if this type is not a union.
-
getUnionSubTypes
SchemaType[] getUnionSubTypes()
For union types only: gets the full tree of member types. This computes the closure of the set returned by getUnionMemberTypes(), so, for example, it returns all the types nested within unions of unions as well as the top-level members; the set also includes the type itself. If you are seeking only the basic non-union consituents, use getUnionConstituentTypes.Returns null if this type is not a union.
-
getUnionConstituentTypes
SchemaType[] getUnionConstituentTypes()
For union types only: get the constituent member types. This returns only non-union types, so, for example, for unions of unions, this returns the flattened list of individual member types within the innermost unions.Returns null if this type is not a union.
-
getUnionCommonBaseType
SchemaType getUnionCommonBaseType()
For union types only: get the most specific common base type of the constituent member types. May return a UR type.Returns null if this type is not a union.
-
getAnonymousUnionMemberOrdinal
int getAnonymousUnionMemberOrdinal()
For anonymous types defined inside a union only: gets the integer indicating the declaration order of this type within the outer union type, or zero if this is not applicable. The first anonymous union member within a union type is numbered "1". Used to differentiate between different anonymous types.
-
getListItemType
SchemaType getListItemType()
For list types only: get the item type. This is the atomic or union type that is the type of every entry in the list.Returns null if this type is not a list.
-
getWhiteSpaceRule
int getWhiteSpaceRule()
For nonunion simple types: get the whitespace rule. This is eitherWS_PRESERVE,WS_REPLACE, orWS_COLLAPSE. ReturnsWS_UNSPECIFIEDfor unions and complex types.
-
newValue
XmlAnySimpleType newValue(Object v)
Creates an immutable simple type value that does not reside in a tree.
-
getRef
SchemaType.Ref getRef()
Retruns a SchemaType.Ref pointing to this schema type itself.
-
qnameSetForWildcardElements
QNameSet qnameSetForWildcardElements()
Returns a QNameSet of elements that may exist in wildcard buchets and are not explicitly defined in this schema type. Note: In this example:
the returned QNameSet will not contain the qname of 'someElement'.<xs:complexType name="exampleType"> <xs:sequence> <xs:element name="someElement" type='xs:string' /> <xs:any namespace="##targetNamespace" /> </xs:sequence> </xs:complexType>- Returns:
- the constructed QNameSet
-
qnameSetForWildcardAttributes
QNameSet qnameSetForWildcardAttributes()
Returns a QNameSet of attributes that may exist in wildcard buchets and are not explicitly defined in this schema type. Note: In this example:
the returned QNameSet will not contain the qname of 'someAttribute'.<xs:complexType name="exampleType"> ... <xs:attribute name='someAttribute' type='xs:string' /> <xs:anyAttribute namespace="##targetNamespace" /> </xs:complexType>- Returns:
- the constructed QNameSet
-
getDocumentation
String getDocumentation()
returns user specified documentation<xs:complexType ...> <xs:annotation> <xs:documentation> getDocumentation method will return whatever stuff here. </xs:docmentation> </xs:annotation> </xs complexType>
-
-