Package net.sf.saxon.type
Class AnyExternalObjectType
java.lang.Object
net.sf.saxon.type.AnyExternalObjectType
- All Implemented Interfaces:
ItemType
- Direct Known Subclasses:
ExternalObjectType
This class represents the type of an external object returned by
an extension function, or supplied as an external variable/parameter.
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.sf.saxon.type.ItemType
ItemType.WithSequenceTypeCache -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongenerateJavaScriptItemTypeAcceptor(String errorCode, int targetVersion) Generate Javascript code to convert a supplied Javascript value to this item type, if conversion is possible, or throw an error otherwise.generateJavaScriptItemTypeTest(ItemType knownToBe, int targetVersion) Generate Javascript code to test whether an item conforms to this item typeGet an alphabetic code representing the type, or at any rate, the nearest built-in type from which this type is derived.Get the item type of the atomic values that will be produced when an item of this type is atomizedgetGenre()Determine the Genre (top-level classification) of this typeGet the primitive item type corresponding to this item type.intGet the primitive type corresponding to this item type.getUType()Get the correspondingUType.booleanDetermine whether this item type is an atomic typebooleanAsk whether values of this type are atomizablebooleanDetermine whether this item type is a plain type (that is, whether it can ONLY match atomic values)booleanmatches(Item item, TypeHierarchy th) Test whether a given item conforms to this typeMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.sf.saxon.type.ItemType
explainMismatch, isTrueItemType, toExportString, toString
-
Field Details
-
THE_INSTANCE
-
-
Constructor Details
-
AnyExternalObjectType
protected AnyExternalObjectType()
-
-
Method Details
-
isAtomicType
public boolean isAtomicType()Description copied from interface:ItemTypeDetermine whether this item type is an atomic type- Specified by:
isAtomicTypein interfaceItemType- Returns:
- true if this is ANY_ATOMIC_TYPE or a subtype thereof
-
matches
Description copied from interface:ItemTypeTest whether a given item conforms to this type- Specified by:
matchesin interfaceItemType- Parameters:
item- The item to be testedth- The type hierarchy cache. Currently used only when matching function items.- Returns:
- true if the item is an instance of this type; false otherwise
- Throws:
XPathException
-
isPlainType
public boolean isPlainType()Description copied from interface:ItemTypeDetermine whether this item type is a plain type (that is, whether it can ONLY match atomic values)- Specified by:
isPlainTypein interfaceItemType- Returns:
- true if this is ANY_ATOMIC_TYPE or a subtype thereof, or a "plain" union type (that is, unions of atomic types that impose no further restrictions). Return false if this is a union type whose member types are not all known.
-
getPrimitiveType
public int getPrimitiveType()Description copied from interface:ItemTypeGet the primitive type corresponding to this item type. For item(), this is Type.ITEM. For node(), it is Type.NODE. For specific node kinds, it is the value representing the node kind, for example Type.ELEMENT. For anyAtomicValue it is BuiltInAtomicType.ANY_ATOMIC. For numeric it is Type.NUMBER. For other atomic types it is the primitive type as defined in XML Schema, except that INTEGER is considered to be a primitive type.- Specified by:
getPrimitiveTypein interfaceItemType- Returns:
- the integer fingerprint of the corresponding primitive type
-
getAlphaCode
Get an alphabetic code representing the type, or at any rate, the nearest built-in type from which this type is derived. The codes are designed so that for any two built-in types A and B, alphaCode(A) is a prefix of alphaCode(B) if and only if A is a supertype of B.- Specified by:
getAlphaCodein interfaceItemType- Returns:
- the alphacode for the nearest containing built-in type
-
generateJavaScriptItemTypeTest
public String generateJavaScriptItemTypeTest(ItemType knownToBe, int targetVersion) throws XPathException Description copied from interface:ItemTypeGenerate Javascript code to test whether an item conforms to this item type- Specified by:
generateJavaScriptItemTypeTestin interfaceItemType- Parameters:
knownToBe- An item type that the supplied item is known to conform to; the generated code can assume that the item is an instance of this type.targetVersion- The version of Saxon-JS for which code is being generated. Currently either 1 or 2.- Returns:
- a Javascript instruction or sequence of instructions, which can be used as the body of a Javascript function, and which returns a boolean indication whether the value of the variable "item" is an instance of this item type.
- Throws:
XPathException- if JS code cannot be generated for this item type, for example because the test is schema-aware.
-
generateJavaScriptItemTypeAcceptor
public String generateJavaScriptItemTypeAcceptor(String errorCode, int targetVersion) throws XPathException Description copied from interface:ItemTypeGenerate Javascript code to convert a supplied Javascript value to this item type, if conversion is possible, or throw an error otherwise.- Specified by:
generateJavaScriptItemTypeAcceptorin interfaceItemType- Parameters:
errorCode- the error to be thrown if conversion is not possibletargetVersion- the version of Saxon-JS for which code is being generated- Returns:
- a Javascript instruction or sequence of instructions, which can be used as the body of a Javascript function, and which returns the result of conversion to this type, or throws an error if conversion is not possible. The variable "val" will hold the supplied Javascript value.
- Throws:
XPathException
-
getPrimitiveItemType
Description copied from interface:ItemTypeGet the primitive item type corresponding to this item type. For item(), this is Type.ITEM. For node(), it is Type.NODE. For specific node kinds, it is the value representing the node kind, for example Type.ELEMENT. For anyAtomicValue and union types it is Type.ATOMIC_VALUE. For numeric it is Type.NUMBER. For other atomic types it is the primitive type as defined in XML Schema, except that integer, xs:dayTimeDuration, and xs:yearMonthDuration are considered to be primitive types.- Specified by:
getPrimitiveItemTypein interfaceItemType- Returns:
- the corresponding primitive type
-
getUType
Description copied from interface:ItemTypeGet the correspondingUType. A UType is a union of primitive item types. -
getAtomizedItemType
Description copied from interface:ItemTypeGet the item type of the atomic values that will be produced when an item of this type is atomized- Specified by:
getAtomizedItemTypein interfaceItemType- Returns:
- the best available item type of the atomic values that will be produced when an item of this type is atomized, or null if it is known that atomization will throw an error.
-
isAtomizable
Description copied from interface:ItemTypeAsk whether values of this type are atomizable- Specified by:
isAtomizablein interfaceItemType- Parameters:
th- the type hierarchy cache- Returns:
- true if some or all instances of this type can be successfully atomized; false if no instances of this type can be atomized
-
getGenre
Description copied from interface:ItemTypeDetermine the Genre (top-level classification) of this type
-