* if rowNum is positive, goes to that position relative to the beginning of the list;
* if rowNum is negative, goes to that position relative to the end of the list;
* a rowNum of 1 is the same as first(); a rowNum of -1 is the same as last()
*/
public boolean absolute(int rowNum) throws GenericEntityException {
if (closed) throw new GenericResultSetClosedException("This EntityListIterator has been closed, this operation cannot be performed");
try {
return resultSet.absolute(rowNum);
} catch (SQLException e) {
if (!closed) {