I have a person's Date Of Birth and I need to check if they were born before an eligible date ( they need to be at least 21 years of age in my scenario). I would like to to use java.util.Date
, not Calendar
. How would I go about checking this?
I have something like this but it could never work efficiently:
Date eligableDate = new Date(28/04/1995);
drivingLicence.getDOB().before(eligableDate)