Berkeley DB XML
version 2.3.10

Uses of Class
com.sleepycat.dbxml.XmlUpdateContext

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

Uses of XmlUpdateContext in com.sleepycat.dbxml
 

Methods in com.sleepycat.dbxml that return XmlUpdateContext
 XmlUpdateContext XmlManager.createUpdateContext()
          Instantiates a new, default, XmlUpdateContext object.
 

Methods in com.sleepycat.dbxml with parameters of type XmlUpdateContext
 void XmlContainer.addDefaultIndex(String index, XmlUpdateContext context)
          Adds a default index to the container.
 void XmlContainer.addDefaultIndex(XmlTransaction txn, String index, XmlUpdateContext context)
          Adds a default index to the container in the scope of a transaction.
 void XmlContainer.addIndex(String uri, String name, String index, XmlUpdateContext context)
          Adds an index of the specified type for the named document node.
 void XmlContainer.addIndex(XmlTransaction txn, String uri, String name, String index, XmlUpdateContext context)
          Adds an index of the specified type for the named document node in the scope of a transaction.
 void XmlContainer.deleteDefaultIndex(String index, XmlUpdateContext context)
          Deletes the default index for the container.
 void XmlContainer.deleteDefaultIndex(XmlTransaction txn, String index, XmlUpdateContext context)
          Deletes the default index for the container in the scope of a transaction.
 void XmlContainer.deleteDocument(String name, XmlUpdateContext context)
          Removes the named document from the container.
 void XmlContainer.deleteDocument(XmlDocument document, XmlUpdateContext context)
          Removes the specified XmlDocument from the container.
 void XmlContainer.deleteDocument(XmlTransaction txn, String name, XmlUpdateContext context)
          Removes the named document from the container in the scope of a transaction.
 void XmlContainer.deleteDocument(XmlTransaction txn, XmlDocument document, XmlUpdateContext context)
          Removes the specified XmlDocument from the container in the scope of a transaction.
 void XmlContainer.deleteIndex(String uri, String name, String index, XmlUpdateContext context)
          Deletes an index of the specified type for the named document node.
 void XmlContainer.deleteIndex(XmlTransaction txn, String uri, String name, String index, XmlUpdateContext context)
          Deletes an index of the specified type for the named document node in the context of a transaction.
 long XmlModify.execute(XmlResults toModify, XmlQueryContext context, XmlUpdateContext uc)
          Executes one or more document modification operations (or steps) against an XmlValue object.
 long XmlModify.execute(XmlTransaction txn, XmlResults toModify, XmlQueryContext context, XmlUpdateContext uc)
          Executes one or more document modification operations (or steps) against an XmlValue object.
 long XmlModify.execute(XmlTransaction txn, XmlValue toModify, XmlQueryContext context, XmlUpdateContext uc)
          Executes one or more document modification operations (or steps) against an XmlValue object.
 long XmlModify.execute(XmlValue toModify, XmlQueryContext context, XmlUpdateContext uc)
          Executes one or more document modification operations (or steps) against an XmlValue object.
 void XmlManager.loadContainer(String name, String filename, XmlUpdateContext uc)
          Loads data from the specified file into the container.
 String XmlContainer.putDocument(String name, String contents, XmlUpdateContext context)
          Inserts a document into the container with a given name and string content.
 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.
 String XmlContainer.putDocument(String name, XmlInputStream input, XmlUpdateContext context)
          Inserts a document into the container with a given name and content from a stream.
 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)
          Inserts an XmlDocument into the container.
 void XmlContainer.putDocument(XmlDocument document, XmlUpdateContext context, XmlDocumentConfig config)
          Inserts an XmlDocument into the container, with configuration options.
 String XmlContainer.putDocument(XmlTransaction txn, String name, String contents, XmlUpdateContext context)
          Inserts a document into the container with a given name and string content in the scope of a transaction.
 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.
 String XmlContainer.putDocument(XmlTransaction txn, String name, XmlInputStream input, XmlUpdateContext context)
          Inserts a document with given name and content into the container in the scope of 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)
          Inserts an XmlDocument 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.
 void XmlManager.reindexContainer(String name, XmlUpdateContext context, XmlContainerConfig config)
          Reindex a container.
 void XmlManager.reindexContainer(XmlTransaction txn, String name, XmlUpdateContext context, XmlContainerConfig config)
          Reindex a container.
 void XmlContainer.replaceDefaultIndex(String index, XmlUpdateContext context)
          Replaces the container's default index.
 void XmlContainer.replaceDefaultIndex(XmlTransaction txn, String index, XmlUpdateContext context)
          Replaces the container's default index in the scope of a transaction.
 void XmlContainer.replaceIndex(String uri, String name, String index, XmlUpdateContext context)
          Replaces an index of the specified type for the named document node.
 void XmlContainer.replaceIndex(XmlTransaction txn, String uri, String name, String index, XmlUpdateContext context)
          Replaces an index of the specified type for the named document node in the scope of a transaction.
 void XmlContainer.setIndexSpecification(XmlIndexSpecification index, XmlUpdateContext context)
          Defines the type of indexing to be maintained for a container of documents.
 void XmlContainer.setIndexSpecification(XmlTransaction txn, XmlIndexSpecification index, XmlUpdateContext context)
          Defines the type of indexing to be maintained for a container of documents in the scope of a transaction.
 void XmlContainer.updateDocument(XmlDocument document, XmlUpdateContext context)
          Updates an XmlDocument in the container.
 void XmlContainer.updateDocument(XmlTransaction txn, XmlDocument document, XmlUpdateContext context)
          Updates an XmlDocument in the container in the scope of a transaction.
 void XmlManager.upgradeContainer(String name, XmlUpdateContext context)
          Upgrades the container from a previous version of Berkeley DB XML, or Berkeley DB, to the current version.
 

Constructors in com.sleepycat.dbxml with parameters of type XmlUpdateContext
XmlUpdateContext(XmlUpdateContext o)
          Copy constructor.
 


Berkeley DB XML
version 2.3.10

Copyright 1996,2007 Oracle. All rights reserved.