public class BuiltInListType extends java.lang.Object implements ListType
This class is used to implement the built-in list types NMTOKENS, ENTITIES, IDREFS. It is also used to represent the anonymous type of the xsi:schemaLocation attribute (a list of xs:anyURI values).
Modifier and Type | Field and Description |
---|---|
static BuiltInListType |
ANY_URIS |
static BuiltInListType |
ENTITIES |
static BuiltInListType |
IDREFS |
static BuiltInListType |
NMTOKENS |
Constructor and Description |
---|
BuiltInListType(int fingerprint)
Create a new ListType.
|
Modifier and Type | Method and Description |
---|---|
boolean |
allowsDerivation(int derivation)
Determines whether derivation (of a particular kind)
from this type is allowed, based on the "final" property
|
void |
analyzeContentExpression(Expression expression,
int kind)
Analyze an expression to see whether the expression is capable of delivering a value of this
type.
|
AtomicSequence |
atomize(NodeInfo node)
Get the typed value of a node that is annotated with this schema type.
|
void |
checkTypeDerivationIsOK(SchemaType type,
int block)
Check that this type is validly derived from a given type
|
SchemaType |
getBaseType()
Returns the base type that this type inherits from.
|
int |
getBlock()
Returns the value of the 'block' attribute for this type, as a bit-signnificant
integer with fields such as
Derivation.DERIVATION_LIST and Derivation.DERIVATION_EXTENSION |
SchemaType |
getBuiltInBaseType()
Get the built-in type from which this type is derived by restriction
|
Function |
getComponentAsFunction()
Get the schema component in the form of a function item.
|
int |
getDerivationMethod()
Gets the integer code of the derivation method used to derive this type from its
parent.
|
java.lang.String |
getDescription()
Get a description of this type for use in error messages.
|
java.lang.String |
getDisplayName()
Get the display name of the type: that is, a lexical QName with an arbitrary prefix
|
java.lang.String |
getEQName()
Get the name of this type as an EQName, that is, a string in the format Q{uri}local.
|
int |
getFinalProhibitions()
Get the types of derivation that are not permitted, by virtue of the "final" property.
|
int |
getFingerprint()
Get the fingerprint of the name of this type
|
SimpleType |
getItemType()
Returns the simpleType of the items in this ListType.
|
SchemaType |
getKnownBaseType()
Returns the base type that this type inherits from.
|
java.lang.String |
getLocalName()
Get the local name of this type
|
java.lang.String |
getName()
Get the local name of this type
|
int |
getRedefinitionLevel()
Get the redefinition level.
|
StructuredQName |
getStructuredQName()
Get the name of the type as a StructuredQName
|
java.lang.String |
getSystemId()
Get the URI of the schema document containing the definition of this type
|
java.lang.String |
getTargetNamespace()
Get the target namespace of this type
|
AtomicSequence |
getTypedValue(UnicodeString value,
NamespaceResolver resolver,
ConversionRules rules)
Get the typed value of a given input string.
|
SchemaValidationStatus |
getValidationStatus()
Get the validation status - always valid
|
int |
getWhitespaceAction()
Determine how values of this simple type are whitespace-normalized.
|
boolean |
isAnonymousType()
Test whether this is an anonymous type
|
boolean |
isAtomicType()
Test whether this Simple Type is an atomic type
|
boolean |
isBuiltInType()
Determine whether this is a built-in type or a user-defined type
|
boolean |
isComplexType()
Test whether this SchemaType is a complex type
|
boolean |
isIdRefType()
Ask whether this type is an IDREF or IDREFS type.
|
boolean |
isIdType()
Ask whether this type is an ID type.
|
boolean |
isListType()
Returns true if this type is derived by list, or if it is derived by restriction
from a list type, or if it is a union that contains a list as one of its members
|
boolean |
isNamespaceSensitive()
Test whether this type is namespace sensitive, that is, if a namespace context is needed
to translate between the lexical space and the value space.
|
boolean |
isSameType(SchemaType other)
Test whether this is the same type as another type.
|
boolean |
isSimpleType()
Test whether this SchemaType is a simple type
|
boolean |
isUnionType()
Test whether this Simple Type is a union type
|
UnicodeString |
postprocess(UnicodeString input)
Reverse any pre-lexical facets, other than whitespace.
|
UnicodeString |
preprocess(UnicodeString input)
Apply any pre-lexical facets, other than whitespace.
|
ValidationFailure |
validateContent(UnicodeString value,
NamespaceResolver nsResolver,
ConversionRules rules)
Check whether a given input string is valid according to this SimpleType
|
public static BuiltInListType ENTITIES
public static BuiltInListType IDREFS
public static BuiltInListType NMTOKENS
public static BuiltInListType ANY_URIS
public BuiltInListType(int fingerprint)
fingerprint
- identifies the name of the typepublic boolean isBuiltInType()
isBuiltInType
in interface SimpleType
public java.lang.String getSystemId()
getSystemId
in interface SchemaType
public int getRedefinitionLevel()
getRedefinitionLevel
in interface SchemaComponent
public int getWhitespaceAction()
getWhitespaceAction
in interface SimpleType
Whitespace.PRESERVE
, Whitespace.COLLAPSE
,
Whitespace.REPLACE
.public SchemaValidationStatus getValidationStatus()
getValidationStatus
in interface SchemaComponent
SchemaValidationStatus.UNVALIDATED
, SchemaValidationStatus.VALIDATING
,
SchemaValidationStatus.VALIDATED
, SchemaValidationStatus.INVALID
, SchemaValidationStatus.INCOMPLETE
public SchemaType getBaseType()
getBaseType
in interface SchemaType
public boolean isAtomicType()
isAtomicType
in interface SchemaType
isAtomicType
in interface SimpleType
public boolean isIdType()
isIdType
in interface SchemaType
public boolean isIdRefType()
isIdRefType
in interface SchemaType
public boolean isListType()
isListType
in interface SimpleType
public boolean isUnionType()
SimpleType
isUnionType
in interface SimpleType
public boolean isAnonymousType()
isAnonymousType
in interface SchemaType
public SchemaType getBuiltInBaseType()
SimpleType
getBuiltInBaseType
in interface SimpleType
public boolean isNamespaceSensitive()
HyperType
isNamespaceSensitive
in interface HyperType
public java.lang.String getName()
getName
in interface SchemaType
public java.lang.String getTargetNamespace()
getTargetNamespace
in interface SchemaType
public java.lang.String getEQName()
getEQName
in interface SchemaType
public int getFingerprint()
getFingerprint
in interface SchemaType
public java.lang.String getDisplayName()
getDisplayName
in interface SchemaType
public boolean isComplexType()
isComplexType
in interface SchemaType
public boolean isSimpleType()
isSimpleType
in interface SchemaType
public int getBlock()
Derivation.DERIVATION_LIST
and Derivation.DERIVATION_EXTENSION
getBlock
in interface SchemaType
public SchemaType getKnownBaseType() throws java.lang.IllegalStateException
java.lang.IllegalStateException
- if this type is not valid.public int getDerivationMethod()
getDerivationMethod
in interface SchemaType
Derivation.DERIVATION_RESTRICTION
public boolean allowsDerivation(int derivation)
allowsDerivation
in interface SchemaType
derivation
- the kind of derivation, for example Derivation.DERIVATION_LIST
public int getFinalProhibitions()
getFinalProhibitions
in interface SchemaType
Derivation.DERIVATION_EXTENSION
public AtomicSequence atomize(NodeInfo node) throws XPathException
atomize
in interface SchemaType
node
- the node whose typed value is requiredXPathException
- if the node cannot be atomized, for example if this is a complex type
with element-only contentpublic boolean isSameType(SchemaType other)
isSameType
in interface SchemaType
other
- the other typepublic java.lang.String getDescription()
SchemaType
getDescription
in interface SchemaType
public void checkTypeDerivationIsOK(SchemaType type, int block)
checkTypeDerivationIsOK
in interface SchemaType
type
- the type from which this type is derivedblock
- the derivations that are blocked by the relevant element declarationpublic java.lang.String getLocalName()
public StructuredQName getStructuredQName()
getStructuredQName
in interface SchemaType
public SimpleType getItemType()
getItemType
in interface ListType
public void analyzeContentExpression(Expression expression, int kind) throws XPathException
analyzeContentExpression
in interface SchemaType
expression
- the expression that delivers the contentkind
- the node kind whose content is being delivered: Type.ELEMENT
,
Type.ATTRIBUTE
, or Type.DOCUMENT
XPathException
- if the expression will never deliver a value of the correct typepublic ValidationFailure validateContent(UnicodeString value, NamespaceResolver nsResolver, ConversionRules rules)
validateContent
in interface SimpleType
value
- the input string to be checkednsResolver
- a namespace resolver used to resolve namespace prefixes if the type
is namespace sensitive. The value supplied may be null; in this case any namespace-sensitive
content will throw an UnsupportedOperationException.rules
- the conversion rules for this configurationjava.lang.UnsupportedOperationException
- if the type is namespace-sensitive and no namespace
resolver is suppliedpublic AtomicSequence getTypedValue(UnicodeString value, NamespaceResolver resolver, ConversionRules rules) throws ValidationException
getTypedValue
in interface SimpleType
value
- the string whose typed value is requiredresolver
- namespace resolver for namespace-sensitive contentrules
- the type conversion rules to be usedAtomicValue
,ValidationException
- if the supplied value is not in the lexical space of the data typepublic UnicodeString preprocess(UnicodeString input)
preprocess
in interface SimpleType
input
- the value to be preprocessedpublic UnicodeString postprocess(UnicodeString input)
postprocess
in interface SimpleType
input
- the value to be postprocessed: this is the "ordinary" result of converting
the value to a stringpublic Function getComponentAsFunction()
getComponentAsFunction
in interface SchemaComponent
Copyright (c) 2004-2022 Saxonica Limited. All rights reserved.