Package | Description |
---|---|
com.hcl.domino | |
com.hcl.domino.data | |
com.hcl.domino.dxl |
Modifier and Type | Method and Description |
---|---|
IDTable |
DominoClient.createIDTable()
Creates a new, empty ID table.
|
Modifier and Type | Interface and Description |
---|---|
interface |
DocumentSelection
Subclass of
IDTable to select data, design or admin documents from an NSF. |
Modifier and Type | Method and Description |
---|---|
IDTable |
DominoCollection.getAllIdsAsIDTable(boolean checkRights) |
IDTable |
Database.getAllNoteIds(Set<DocumentClass> docClasses,
boolean includeDeletions)
This function returns an
IDTable of all note IDs in the database
with the given set of DocumentClass .If includeDeletions is set to TRUE, the returned IDTable
also contains the note IDs of deleted documents. |
IDTable |
Database.getIDTableForFolder(int folderNoteId,
boolean validateIds)
This function gets the Note IDs of notes in a folder and returns a IDTable.
|
IDTable |
Database.getIDTableForFolder(String folderName,
boolean validateIds)
This function gets the Note IDs of notes in a folder and returns a IDTable.
|
IDTable |
Database.getModifiedNoteIds(Set<DocumentClass> docClasses,
TemporalAccessor since,
boolean includeDeletions)
This function returns an
IDTable of Note IDs of documents which have been modified in some way
from the given starting time until "now".The ending date/time is returned in getDateTime() , so that this
function can be performed incrementally.The returned IDTable also contains the note IDs of deleted documents. |
IDTable |
Document.getResponses()
Retrieves the response documents to this document.
|
IDTable |
IDTable.intersect(Collection<Integer> noteIds)
This function creates the intersection of two ID sets.
The resulting table contains those IDs that are common to both source tables. |
Modifier and Type | Method and Description |
---|---|
abstract Optional<IDTable> |
DQLQueryResult.getNoteIds() |
Optional<IDTable> |
FormulaQueryResult.getNoteIds() |
Optional<IDTable> |
FTQueryResult.getNoteIds()
Returns an
IDTable of documents matching the search. |
Optional<IDTable> |
DbQueryResult.getNoteIds()
Returns an
IDTable of documents matching the search. |
Optional<IDTable> |
DocumentSelection.getPreselection()
Returns an
IDTable with note ids to pre-filter the documents to
be scanned by the search |
Optional<IDTable> |
Database.getUnreadDocumentTable(String userName,
boolean createIfNotAvailable,
boolean updateUnread)
An ID Table is created containing the list of unread documents in the
database for the specified user.
The argument createIfNotAvailable controls what action is to be performed
if there is no list of unread notes for the specified user in the database.If no list is found and this flag is set to false , the method will return null .if this flag is set to {code true}, the list of unread documents will be created and all documents in the database will be added to the list. No coordination is performed between different users of the same database. If an application obtains a list of unread documents while another user is modifying the list, the changes made may not be visible to the application. Unread marks for each user are stored in the client desktop.dsk file and in the database. When a user closes a database (either through the Notes user interface or through an API program), the unread marks in the desktop.dsk file and in the database are synchronized so that they match. Unread marks are not replicated when a database is replicated. Instead, when a user opens a replica of a database, the unread marks from the desktop.dsk file propagates to the replica database. |
Modifier and Type | Method and Description |
---|---|
FormulaQueryResult |
Database.queryFormula(String selectionFormula,
IDTable filter,
Set<DirectorySearchQuery.SearchFlag> searchFlags,
TemporalAccessor since,
Set<DocumentClass> docClass)
Evaluates a formula on a set of documents or the whole database
|
Modifier and Type | Method and Description |
---|---|
Optional<IDTable> |
DxlImporter.getImportedNoteIds() |
Copyright © 2019–2021 HCL. All rights reserved.