Skip to content

Instantly share code, notes, and snippets.

@rofr
Created November 19, 2012 12:45
Show Gist options
  • Save rofr/4110451 to your computer and use it in GitHub Desktop.
Save rofr/4110451 to your computer and use it in GitHub Desktop.
LoanApplication data class
enum Gender{
Male,
Female
}
enum Carrier {
Telenor,
Telia
}
public class LoanApplication {
private Gender gender;
private int yearlyIncome;
private int requestedAmount;
private Carrier carrier;
private int dayOfWeek;
private int timeOfDay;
private boolean approved;
//setters and getters omitted for brevity...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment