I have a class called Contact that has a Date lastUpdated; variable.
Contact
Date lastUpdated;
I would like to pull the Contact out of a List
List
Try the following (untested):
contacts.stream().max(Comparator.comparing(Contact::getLastUpdated)).get()