Skip navigation links

Oracle® Database XML Java API Reference
12c Release 1 (12.1)

E15981-09


oracle.xml.xquery
Interface OXQItem

All Superinterfaces:
OXQItemAccessor

public interface OXQItem
extends OXQItemAccessor

Extensions to javax.xml.xquery.XQItem. This currently only provides extensions indirectly by extending OXQItemAccessor.

Use method OXQView.getItem(XQItem) to access the extensions. For example:

 OXQDataSource ds = new OXQDataSource();
 XQConnection con = ds.getConnection();
 XQItem item = con.createItemFromDocument(...);
 OXQItem oitem = OXQView.getItem(item);
 ...
 
Since:
12.1

Method Summary
 XQItem getXQView()
          Returns the XQItem instance corresponding to this instance.

 

Methods inherited from interface oracle.xml.xquery.OXQItemAccessor
getItemAsInputStream, getNodeName

 

Method Detail

getXQView

XQItem getXQView()
Returns the XQItem instance corresponding to this instance.
Specified by:
getXQView in interface OXQItemAccessor
Returns:
the item

Skip navigation links

Oracle® Database XML Java API Reference
12c Release 1 (12.1)

E15981-09


Copyright © 2003, 2014, Oracle and/or its affiliates. All rights reserved.