To sort a list of objects by date in Java, we need to make use of the Collections.sort() method along with a custom Comparator.
Sort by LocalDate:
Collections.sort(employees, Comparator.comparing(Employee::getDateOfBirth));
Example:
package org.code2care.examples;
import java.time.LocalDate;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
public class Employee {
private String name;
private LocalDate dateOfBirth;
public Employee(String name, LocalDate dateOfBirth) {
this.name = name;
this.dateOfBirth = dateOfBirth;
}
public String getName() {
return name;
}
public LocalDate getDateOfBirth() {
return dateOfBirth;
}
public static void main(String[] args) {
List<Employee> employees = new ArrayList<>();
employees.add(new Employee("Mike", LocalDate.of(1990, 4, 1)));
employees.add(new Employee("Sam", LocalDate.of(1985, 6, 5)));
employees.add(new Employee("Andy", LocalDate.of(1980, 9, 20)));
employees.add(new Employee("Andrew", LocalDate.of(1950, 12, 25)));
employees.add(new Employee("Eric", LocalDate.of(1995, 11, 12)));
Collections.sort(employees, Comparator.comparing(Employee::getDateOfBirth));
for (Employee employee : employees) {
System.out.println(employee.getName() + " - DoB: " + employee.getDateOfBirth());
}
}
}
Output:
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Java,
- Deep Dive into Java 8 Predicate Interface
- Read and Parse XML file using Java DOM Parser [Java Tutorial]
- Java 8 Predicate Functional Interface isEqual() Method Example
- Convert Multidimensional Array toString In Java
- How to read int value using Scanner Class Java
- Spring Boot AI + LLM + Java Code Example
- Write to a File using Java Stream API
- Implementing Bubble Sort Algorithm using Java Program
- How to Fix XmlBeanDefinitionStoreException in Java SpringBoot ApplicationConfig.xml
- YAML Parser using Java Jackson Library Example
- [Fix] java: integer number too large compilation error
- Convert JSON String to Java GSON Object Example
- Read a file using Java 8 Stream
- Java Spring Boot 3 Web Hello World with Gradle in IntelliJ
- Ways Compare Dates in Java Programming with Examples
- Pretty Print JSON String in Java Console Output
- Java JDBC with Join Queries Example
- How to Check For Updates on Windows 11 (Step-by-Step)
- [Fix] java.net.MalformedURLException: unknown protocol
- How to display date and time in GMT Timezone in Java
- Error: LinkageError occurred while loading main class UnsupportedClassVersionError [Eclipse Java]
- How to convert a String to Java 8 Stream of Char?
- RabbitMQ Queue Listener Java Spring Boot Code Example
- 5+ Fibonacci number Series Java Program Examples [ 0 1 1 2 3 ..]
- Handling NullPointerException with Java Predicate
More Posts:
- Bash command to Read, Output and Manipulate JSON File - Bash
- Change battery percentage in Android Emulator - Android
- Go to Line Number option in Windows Notepad - NotepadPlusPlus
- WhatsApp Web escanner - WhatsApp
- Install Native M1/M2 Apple Silicon based IntelliJ IDEA IDE on Mac - MacOS
- [fix] docker: Error response from daemon: dial unix docker.raw.sock: connect: no such file or directory. - Docker
- Java 8 JDBC: Insert Timestamp Code Example - Java
- How to repeat background image in Android Activity - Android