|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use XQItemType | |
---|---|
javax.xml.xquery |
Uses of XQItemType in javax.xml.xquery |
---|
Methods in javax.xml.xquery that return XQItemType | |
---|---|
XQItemType |
XQDataFactory.createAtomicType(int basetype)
Creates a new XQItemType object representing an XQuery atomic type. |
XQItemType |
XQDataFactory.createAtomicType(int basetype,
QName typename,
URI schemaURI)
Creates a new XQItemType object representing an XQuery atomic type. |
XQItemType |
XQDataFactory.createAttributeType(QName nodename,
int basetype)
Creates a new XQItemType object representing the XQuery
attribute(nodename, basetype) type
with the given node name and base type. |
XQItemType |
XQDataFactory.createAttributeType(QName nodename,
int basetype,
QName typename,
URI schemaURI)
Creates a new XQItemType object representing the XQuery
attribute(nodename,basetype,typename,schemaURI) type,
with the given node name, base type, schema type name and schema URI. |
XQItemType |
XQDataFactory.createCommentType()
Creates a new XQItemType object representing the XQuery
comment() type. |
XQItemType |
XQDataFactory.createDocumentElementType(XQItemType elementType)
Creates a new XQItemType object representing the XQuery
document-node(elementType) type containing a single element. |
XQItemType |
XQDataFactory.createDocumentSchemaElementType(XQItemType elementType)
Creates a new XQItemType object representing the XQuery
document-node(elementType) type containing a single
schema-element(...) . |
XQItemType |
XQDataFactory.createDocumentType()
Creates a new XQItemType object representing the XQuery
document-node() type. |
XQItemType |
XQDataFactory.createElementType(QName nodename,
int basetype)
Creates a new XQItemType object representing the XQuery
element(nodename, basetype) type, with the
given node name and base type. |
XQItemType |
XQDataFactory.createElementType(QName nodename,
int basetype,
QName typename,
URI schemaURI,
boolean allowNill)
Creates a new XQItemType object representing the XQuery
element(nodename,basetype,typename,schemaURI,
allowNill) type, given the node name, base type, schema type
name, schema URI, and nilled check. |
XQItemType |
XQDataFactory.createItemType()
Creates a new XQItemType object representing the XQuery item type. |
XQItemType |
XQDataFactory.createNodeType()
Creates a new XQItemType object representing the XQuery node()
type. |
XQItemType |
XQDataFactory.createProcessingInstructionType(String piTarget)
Creates a new XQItemType object representing the XQuery
processing-instruction(piTarget) type. |
XQItemType |
XQDataFactory.createSchemaAttributeType(QName nodename,
int basetype,
URI schemaURI)
Creates a new XQItemType object representing the XQuery
schema-attribute(nodename,basetype,schemaURI) type,
with the given node name, base type, and schema URI. |
XQItemType |
XQDataFactory.createSchemaElementType(QName nodename,
int basetype,
URI schemaURI)
Creates a new XQItemType object representing the XQuery
schema-element(nodename,basetype,schemaURI)
type, given the node name, base type, and the schema URI. |
XQItemType |
XQDataFactory.createTextType()
Creates a new XQItemType object representing the XQuery
text() type. |
XQItemType |
XQStaticContext.getContextItemStaticType()
Gets the static type of the context item. |
XQItemType |
XQItemAccessor.getItemType()
Gets the type of the item. |
XQItemType |
XQSequenceType.getItemType()
Returns the type of the item in the sequence type. |
Methods in javax.xml.xquery with parameters of type XQItemType | |
---|---|
void |
XQDynamicContext.bindAtomicValue(QName varName,
String value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindBoolean(QName varName,
boolean value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindByte(QName varName,
byte value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindDocument(QName varName,
InputStream value,
String baseURI,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindDocument(QName varName,
Reader value,
String baseURI,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindDocument(QName varName,
Source value,
XQItemType type)
Binds a value to the given external variable or the context item from the given Source . |
void |
XQDynamicContext.bindDocument(QName varName,
String value,
String baseURI,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindDocument(QName varName,
XMLStreamReader value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindDouble(QName varName,
double value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindFloat(QName varName,
float value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindInt(QName varName,
int value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindLong(QName varName,
long value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindNode(QName varName,
Node value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindObject(QName varName,
Object value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindShort(QName varName,
short value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindString(QName varName,
String value,
XQItemType type)
Binds a value to the given external variable or the context item. |
XQItemType |
XQDataFactory.createDocumentElementType(XQItemType elementType)
Creates a new XQItemType object representing the XQuery
document-node(elementType) type containing a single element. |
XQItemType |
XQDataFactory.createDocumentSchemaElementType(XQItemType elementType)
Creates a new XQItemType object representing the XQuery
document-node(elementType) type containing a single
schema-element(...) . |
XQItem |
XQDataFactory.createItemFromAtomicValue(String value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromBoolean(boolean value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromByte(byte value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromDocument(InputStream value,
String baseURI,
XQItemType type)
Creates an item from the given value. |
XQItem |
XQDataFactory.createItemFromDocument(Reader value,
String baseURI,
XQItemType type)
Creates an item from the given value. |
XQItem |
XQDataFactory.createItemFromDocument(Source value,
XQItemType type)
Creates an item from the given Source . |
XQItem |
XQDataFactory.createItemFromDocument(String value,
String baseURI,
XQItemType type)
Creates an item from the given value. |
XQItem |
XQDataFactory.createItemFromDocument(XMLStreamReader value,
XQItemType type)
Creates an item from the given value. |
XQItem |
XQDataFactory.createItemFromDouble(double value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromFloat(float value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromInt(int value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromLong(long value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromNode(Node value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromObject(Object value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromShort(short value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromString(String value,
XQItemType type)
Creates an item from a given value. |
XQSequenceType |
XQDataFactory.createSequenceType(XQItemType item,
int occurence)
Creates a new sequence type from an item type and occurence indicator. |
boolean |
XQItemAccessor.instanceOf(XQItemType type)
Checks if the item "matches" an item type, as defined in 2.5.4.2 Matching an Item Type and an Item, XQuery 1.0: An XML Query Language. |
void |
XQStaticContext.setContextItemStaticType(XQItemType contextItemType)
Sets the static type of the context item, specify null
to make it unspecified. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |