Berkeley DB XML
version 2.3.10

Uses of Class
com.sleepycat.dbxml.XmlDocumentConfig

Packages that use XmlDocumentConfig
com.sleepycat.dbxml Berkeley DB XML Java API
[reference guide]
 

Uses of XmlDocumentConfig in com.sleepycat.dbxml
 

Fields in com.sleepycat.dbxml declared as XmlDocumentConfig
static XmlDocumentConfig XmlDocumentConfig.DEFAULT
          The default settings.
 

Methods in com.sleepycat.dbxml that return XmlDocumentConfig
 XmlDocumentConfig XmlDocumentConfig.setDocumentsOnly(boolean value)
          Sets whether index lookups will return documents or nodes for containers with node indexes.
 XmlDocumentConfig XmlDocumentConfig.setGenerateName(boolean value)
          Sets whether to automatically generate a name for the document.
 XmlDocumentConfig XmlDocumentConfig.setLazyDocs(boolean value)
          Sets whether to retrieve the document lazily.
 XmlDocumentConfig XmlDocumentConfig.setLockMode(LockMode lmode)
          Set the lock mode for the operation.
 XmlDocumentConfig XmlDocumentConfig.setReverseOrder(boolean value)
          Sets whether to sort index lookups in reverse order
 XmlDocumentConfig XmlDocumentConfig.setWellFormedOnly(boolean value)
          Sets whether operations that may parse a document use only a well-formed scanner, avoiding the expense of reading any referenced schema or DTD.
 

Methods in com.sleepycat.dbxml with parameters of type XmlDocumentConfig
 XmlResults XmlIndexLookup.execute(XmlQueryContext context, XmlDocumentConfig config)
          Executes the index lookup operation specified by the configuration of the XmlIndexLookup object.
 XmlResults XmlQueryExpression.execute(XmlQueryContext queryContext, XmlDocumentConfig config)
          Evaluates the XQuery expression against the containers and documents identified by the query, with configuration.
 XmlResults XmlIndexLookup.execute(XmlTransaction txn, XmlQueryContext context, XmlDocumentConfig config)
          Executes the index lookup operation specified by the configuration of the XmlIndexLookup object.
 XmlResults XmlQueryExpression.execute(XmlTransaction txn, XmlQueryContext queryContext, XmlDocumentConfig config)
          Evaluates the XQuery expression against the containers and documents identified by the query, from within the scope of the provided XmlTransaction object, with configuration.
 XmlResults XmlQueryExpression.execute(XmlTransaction txn, XmlValue contextItem, XmlQueryContext queryContext, XmlDocumentConfig config)
          Evaluates the XQuery expression against the provided context item, from within the scope of the provided XmlTransaction object.
 XmlResults XmlQueryExpression.execute(XmlValue contextItem, XmlQueryContext queryContext, XmlDocumentConfig config)
          Evaluates the XQuery expression against the provided context item in the given query context with configuration.
 XmlResults XmlContainer.getAllDocuments(XmlDocumentConfig config)
          Returns all XmlDocument objects in the container, with configuration options.
 XmlResults XmlContainer.getAllDocuments(XmlTransaction txn, XmlDocumentConfig config)
          Returns all XmlDocument objects in the container, with configuration options, in the context of a transaction.
 XmlDocument XmlContainer.getDocument(String name, XmlDocumentConfig config)
          Returns the XmlDocument with the specified name, with configuration options.
 XmlDocument XmlContainer.getDocument(XmlTransaction txn, String name, XmlDocumentConfig config)
          Returns the XmlDocument with the specified name in the scope of a transaction, with configuration options.
 XmlIndexSpecification XmlContainer.getIndexSpecification(XmlTransaction txn, XmlDocumentConfig config)
          Retrieves the current index specification for the container in the scope of a transaction using the specified XmlDocumentConfig object.
 XmlResults XmlContainer.lookupIndex(XmlQueryContext context, String uri, String name, String parentUri, String parentName, String index, XmlValue value, XmlDocumentConfig config)
          Deprecated. as of release 2.2. Use XmlManager.createIndexLookup(com.sleepycat.dbxml.XmlContainer, java.lang.String, java.lang.String, java.lang.String, com.sleepycat.dbxml.XmlValue, int) and XmlIndexLookup.execute(com.sleepycat.dbxml.XmlQueryContext) instead.
 XmlResults XmlContainer.lookupIndex(XmlQueryContext context, String uri, String name, String index, XmlValue value, XmlDocumentConfig config)
          Deprecated. as of release 2.2. Use XmlManager.createIndexLookup(com.sleepycat.dbxml.XmlContainer, java.lang.String, java.lang.String, java.lang.String, com.sleepycat.dbxml.XmlValue, int) and XmlIndexLookup.execute(com.sleepycat.dbxml.XmlQueryContext) instead.
 XmlResults XmlContainer.lookupIndex(XmlTransaction txn, XmlQueryContext context, String uri, String name, String parentUri, String parentName, String index, XmlValue value, XmlDocumentConfig config)
          Deprecated. as of release 2.2. Use XmlManager.createIndexLookup(com.sleepycat.dbxml.XmlContainer, java.lang.String, java.lang.String, java.lang.String, com.sleepycat.dbxml.XmlValue, int) and XmlIndexLookup.execute(com.sleepycat.dbxml.XmlQueryContext) instead.
 XmlResults XmlContainer.lookupIndex(XmlTransaction txn, XmlQueryContext context, String uri, String name, String index, XmlValue value, XmlDocumentConfig config)
          Deprecated. as of release 2.2. Use XmlManager.createIndexLookup(com.sleepycat.dbxml.XmlContainer, java.lang.String, java.lang.String, java.lang.String, com.sleepycat.dbxml.XmlValue, int) and XmlIndexLookup.execute(com.sleepycat.dbxml.XmlQueryContext) instead.
 void XmlContainer.putDocument(String name, String content, XmlUpdateContext context, XmlDocumentConfig config)
          Inserts a document with given name and string content into the container.
 String XmlContainer.putDocument(String name, XmlEventReader reader, XmlUpdateContext context, XmlDocumentConfig config)
          Inserts a document with given name into the container, using the content retrieved from the given XmlEventReader as content.
 void XmlContainer.putDocument(String name, XmlInputStream input, XmlUpdateContext context, XmlDocumentConfig config)
          Inserts a document with given name and content into the container.
 void XmlContainer.putDocument(XmlDocument document, XmlUpdateContext context, XmlDocumentConfig config)
          Inserts an XmlDocument into the container, with configuration options.
 void XmlContainer.putDocument(XmlTransaction txn, String name, String content, XmlUpdateContext context, XmlDocumentConfig config)
          Inserts a document with given name and string content into the container in the scope of a transaction.
 String XmlContainer.putDocument(XmlTransaction txn, String name, XmlEventReader reader, XmlUpdateContext context, XmlDocumentConfig config)
          Inserts a document with given name into the container, using the content retrieved from the given XmlEventReader as content, within a transaction.
 void XmlContainer.putDocument(XmlTransaction txn, String name, XmlInputStream input, XmlUpdateContext context, XmlDocumentConfig config)
          Inserts a document with given name and content into the container in the scope of a transaction.
 void XmlContainer.putDocument(XmlTransaction txn, XmlDocument document, XmlUpdateContext context, XmlDocumentConfig config)
          Inserts an XmlDocument into the container in the scope of a transaction.
 XmlEventWriter XmlContainer.putDocumentAsEventWriter(XmlDocument document, XmlUpdateContext context, XmlDocumentConfig config)
          Prepares to insert an XmlDocument into the container, using the returned XmlEventWriter.
 XmlEventWriter XmlContainer.putDocumentAsEventWriter(XmlTransaction txn, String name, XmlUpdateContext context, XmlDocumentConfig config)
          Prepares to insert an XmlDocument into the container, using the returned XmlEventWriter, in the scope of a transaction.
 XmlResults XmlManager.query(String query, XmlQueryContext context, XmlDocumentConfig config)
          Executes a query in the context of the XmlManager object.
 XmlResults XmlManager.query(XmlTransaction txn, String query, XmlQueryContext context, XmlDocumentConfig config)
          Executes a query in the context of the XmlManager object.
 


Berkeley DB XML
version 2.3.10

Copyright 1996,2007 Oracle. All rights reserved.