interface LdapUserEnumeration extends java.util.Enumeration
{
public boolean hasMore()
throws NamingException;
public boolean hasMoreElements();
public String next()
throws NamingException;
public Object nextElement();
public close()
throws NamingException;
}
メソッド名 | 機能 |
---|---|
closeメソッド | オブジェクトをクローズします。 |
hasMoreメソッド | 一覧に次のユーザIDがあるかどうかを判定します。 (NamingException例外の呼び出し:あり) |
hasMoreElementsメソッド | 一覧に次のユーザIDがあるかどうかを判定します。 (NamingException例外の呼び出し:なし) |
nextメソッド | 一覧の次のユーザIDを取得します。 (NamingException例外の呼び出し:あり 戻り値の型:String型) |
nextElementメソッド | 一覧の次のユーザIDを取得します。 (NamingException例外の呼び出し:なし 戻り値の型:Object型) |