| java.lang.Object org.nemesis.forum.impl.DbUserIterator
DbUserIterator | public class DbUserIterator implements Iterator,ListIterator(Code) | | An Iterator for all the users in the system. Those wishing to integrate
into their own User system should also modify this class.
|
Field Summary | |
protected static Log | log |
Method Summary | |
public void | add(Object o) For security reasons, the add operation is not supported. | public boolean | hasNext() Returns true if there are more users left to iteratate through forwards. | public boolean | hasPrevious() Returns true if there are more users left to iteratore through backwards. | public Object | next() Returns the next User. | public int | nextIndex() Returns the index number that would be returned with a call to next(). | public Object | previous() Returns the previous user. | public int | previousIndex() Returns the index number that would be returned with a call to previous(). | public void | remove() For security reasons, the remove operation is not supported. | public void | set(Object o) For security reasons, the set operation is not supported. |
log | protected static Log log(Code) | | |
DbUserIterator | protected DbUserIterator(ProfileManager profileManager, int startIndex, int numResults)(Code) | | |
hasNext | public boolean hasNext()(Code) | | Returns true if there are more users left to iteratate through forwards.
|
hasPrevious | public boolean hasPrevious()(Code) | | Returns true if there are more users left to iteratore through backwards.
|
nextIndex | public int nextIndex()(Code) | | Returns the index number that would be returned with a call to next().
|
previousIndex | public int previousIndex()(Code) | | Returns the index number that would be returned with a call to previous().
|
remove | public void remove()(Code) | | For security reasons, the remove operation is not supported. Use
ProfileManager instead.
See Also: ProfileManager |
|
|