getNextNoteID (NoteCollection - Java)

Given a note, finds the note immediately following it in a collection.

Defined in

NoteCollection

Syntax

public String getNextNoteID(String noteid)
   throws NotesException

Parameters

String noteid

A valid note ID.

Return value

String

The ID of the note following the specified note.

Usage

If no next note exists, this method returns a string of length 0.

This method throws an exception if the parameter is an invalid note ID.

Example