717273747576777879
} private void addContact(ResultSet rs, Resume r) throws SQLException { String value = rs.getString("value"); if (value != null) { ContactType type = ContactType.valueOf(rs.getString("type")); r.addContact(type, value); } }