| java.lang.Object com.Yasna.forum.database.DbUserMessagesIterator
DbUserMessagesIterator | public class DbUserMessagesIterator implements Iterator,ListIterator(Code) | | An Iterator for all the user's Messages in a forum.
|
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. |
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 |
|
|