stampAll (ViewEntryCollection - Java)

Replaces the value of a specified item in the documents of all the entries in a view entry collection.

Defined in

ViewEntryCollection

Syntax

public void stampAll(String itemName, Object value)
    throws NotesException

Parameters

String itemName

The name of the item.

Object value

A value appropriate for the item type.

Usage

If the item does not exist, it is created.

The item values are immediately written to the documents in storage. You do not have to use the save method of Document after stampAll. However, any documents modified by your program must be saved before calling stampAll.

This method does not modify existing Document objects. Documents must be retrieved again to see the changes.

Example