過去のナビゲーションリンクのスキップSecure Global Desktop 4.31 管理者ガイド > アプレット > getIteratorHasMoreElements (Webtop スクリプトアプレットおよび Webtop トレイアプレット)

getIteratorHasMoreElements (Webtop スクリプトアプレットおよび Webtop トレイアプレット)

構文

過去のコマンド構文またはプログラムコードのスキップString getIteratorHasMoreElements(String iteratorHandle)

説明

Returns "TRUE" if the iterator identified by the iterator handle contains more object names; otherwise, it returns "FALSE".

iteratorHandle is the handle to an iterator previously created with one of the getIterator methods.

This method can be used with either the webtop script applet or the webtop tray applet.

過去のコマンド構文またはプログラムコードのスキップwhile (applet.getIteratorHasMoreElements(iterator) == "TRUE") {

    current = applet.getNextIteratorElement(iterator);
}

Iterates through all elements, checking each time if any more elements remain.

関連トピック