if (countPartialField==1) {
row = new Object[1];
row[0] = iter.next();
} else
row = (Object[]) iter.next();
StatMbByRole statMbByRoleResult = new StatMbByRole();
if (statMbByRole.getId() != null) {
statMbByRoleResult.setId((String) row[index]);
index++;
}
if (statMbByRole.getStatMbPerCtryConfId() != null) {
statMbByRoleResult.setStatMbPerCtryConfId((String) row[index]);
index++;
}
if (statMbByRole.getRoleName() != null) {
statMbByRoleResult.setRoleName((String) row[index]);
index++;
}
if (statMbByRole.getNumber() != null) {
statMbByRoleResult.setNumber((Long) row[index]);
index++;
}
returnList.add(statMbByRoleResult);
}
return returnList;