getPos (ViewNavigator - Java)

Returns the entry at a specified position in a view navigator.

Defined in

ViewNavigator

Syntax

public ViewEntry getPos(String pos, char separator)
    throws NotesException

Parameters

String pos

A position in decimal format, for example, "1.2.3" is the third child to the second child to the first entry using the period as a level separator.

char separator

The separator between position levels.

Return value

ViewEntry

The entry at the specified position. Returns null if there is no entry at that position.

Usage

This method moves the current pointer to the retrieved entry unless the return value is null.

Example