}
guest.setJob(job);
guest.setGender(Gender.valueOfCode(lineTokens[4]));
List<HobbyPractician> hobbyPracticianOfGuestList = new ArrayList<HobbyPractician>(lineTokens.length - 5);
for (int j = 5; j < lineTokens.length; j++) {
HobbyPractician hobbyPractician = new HobbyPractician();
hobbyPractician.setId((long) hobbyPracticianJobId);
hobbyPracticianJobId++;
hobbyPractician.setGuest(guest);
hobbyPractician.setHobby(Hobby.valueOfCode(lineTokens[j]));
hobbyPracticianOfGuestList.add(hobbyPractician);
hobbyPracticianList.add(hobbyPractician);
}
guest.setHobbyPracticianList(hobbyPracticianOfGuestList);
guestList.add(guest);