getModifiedDocumentsWithOptions (Database - Java)

Lets you retrieve all modified documents meeting matches for specified options.

Defined in

Database

Syntax

public lotus.domino.NoteCollection 
	getModifiedDocumentsWithOptions(lotus.domino.DateTime sinceTime,
		lotus.domino.DateTime untilTime, int options)

Parameters

sinceTime

lotus.domino.DateTime. The time since the document was modified.

untilTime

lotus.domino.DateTime. The time until the document is modified.

options

int. Indicates the match options for the return result. These options include the following:
public static final int DBGETMOD_NEW_AND_DEL_NOTES =0x00000001;
public static final int DBGETMOD_NEW_ONLY =0x00000004;
public static final int DBGETMOD_DELETED_ONLY =0x00000008;
public static final int DBGETMOD_NO_SOFT_DELETES =0x00000010;
public static final int DBGETMOD_NODELETED_BIT 0x00000080;

Return value

NoteCollection

A collection of documents (NoteCollection) which include all matching options.

Language cross-reference

GetModifiedDocumentsWithOptions method in LotusScript® NotesDatabase class.

getModifiedDocumentsWithOptions method in JavaScript NotesDatabase class.