All Packages Class Hierarchy This Package Previous Next Index
Interface javax.naming.NamingEnumeration
- public interface NamingEnumeration
- extends Enumeration
This interface is for enumerating lists returned by
methods in the javax.naming and javax.naming.directory packages.
It extends Enumeration to allow as exceptions to be thrown during
the enumeration.
When a method such as list(), listBindings(), or search() returns
a NamingEnumeration, any exceptions encountered are reserved until
all results have been returned. At the end of the enumeration, the
exception is thrown (by hasMore());
For example, if the list() is
returning only a partial answer, the corresponding exception would
be PartialResultException. list() would first return a NamingEnumeration.
When the last of the results has been returned by the NamingEnumeration's
next(), invoking hasMore() would result in PartialResultException being thrown.
In another example, if a search() method was invoked with a specified
size limit of 'n'. If the answer consists of more than 'n' results,
search() would first return a NamingEnumeration.
When the n'th result has been returned by invoking next() on the
NamingEnumeration, a SizeLimitExceedException would then thrown when
hasMore() is invoked.
Note that if the program uses hasMoreElements() and nextElement() instead
to iterate through the NamingEnumeration, because these methods
cannot throw exceptions, no exception will be thrown. Instead,
in the previous example, after the n'th result has been returned by
nextElement(), invoking hasMoreElements() would return false.
Note also that NoSuchElementException is thrown if the program invokes
next() or nextElement() when there are no elements left in the enumeration.
The program can always avoid this exception by using hasMore() and
hasMoreElements() to check whether the end of the enumeration has been reached.
- See Also:
- list, listBindings, search, getAll, getIDs, getAll
-
hasMore()
- Determines whether there are any more elements in the enumeration.
-
next()
- Retrieves the next element in the enumeration.
next
public abstract Object next() throws NamingException
- Retrieves the next element in the enumeration.
This method allows naming exceptions encountered while
retrieving the next element to be caught and handled
by the application.
Note that next() can also throw the runtime exception
NoSuchElementException to indicate that the caller is
attempting to enumerate beyond the end of the enumeration.
This is different from a NamingException, which indicates
that there was a problem in obtaining the next element,
for example, due to a referral or server unavailability, etc.
- Returns:
- The possibly null element in the enumeration.
null is only valid for enumerations that can return
null (e.g. Attribute.getAll() returns an enumeration of
attribute values, and an attribute value can be null).
- Throws: NamingException
- If a naming exception is encountered while attempting
to retrieve the next element. See NamingException
and its subclasses for the possible naming exceptions.
- Throws: NoSuchElementException
- If attempting to get the next element when none is available.
- See Also:
- nextElement
hasMore
public abstract boolean hasMore() throws NamingException
- Determines whether there are any more elements in the enumeration.
This method allows naming exceptions encountered while
determining whether there are more elements to be caught and handled
by the application.
- Returns:
- true if there is more in the enumeration ; false otherwise.
- Throws: NamingException
- If a naming exception is encountered while attempting
to determine whether there is another element
in the enumeration. See NamingException
and its subclasses for the possible naming exceptions.
- See Also:
- hasMoreElements
All Packages Class Hierarchy This Package Previous Next Index