| java.lang.Object com.Yasna.forum.database.DbGroupIterator
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 groups left to iteratate through. | public boolean | hasPrevious() Returns true if there are more groups left to iterate through backwards. | public Object | next() Returns the next Group. | public int | nextIndex() Returns the index number that would be returned with a call to next(). | public Object | previous() Returns the previous group. | 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. |
DbGroupIterator | protected DbGroupIterator(ProfileManager profileManager, int startIndex, int numResults)(Code) | | |
hasNext | public boolean hasNext()(Code) | | Returns true if there are more groups left to iteratate through.
|
hasPrevious | public boolean hasPrevious()(Code) | | Returns true if there are more groups left to iterate 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.deleteGroup() instead.
See Also: ProfileManager |
|
|