
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Create New List from Existing List Using Function Mapper in Java
To create a new list with values from fields from existing list with Function Mapper, the following is an example. Here, we have a class Employee −
class Employee { private String emp_name; private int emp_age; private String emp_zone; }
The following is an example that creates a new list from existing with Function Mapper −
Example
import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.function.Function; public class Demo { public static void main(String args[]) { List < Employee > emp = Arrays.asList(new Employee("Jack", 29, "South"), new Employee("Tom", 24, "North"), new Employee("Harry", 35, "West"), new Employee("Katie", 32, "East")); List < String > res = processElements(emp, p -> p.displayEmpName()); System.out.println("Employee Names + " + res); } public static < X, Y > List < Y > processElements(Iterable < X > src, Function < X, Y > mapper) { List < Y > list = new ArrayList <> (); for (X p: src) list.add(mapper.apply(p)); return list; } } class Employee { private String emp_name; private int emp_age; private String emp_zone; public Employee(String emp_name, int emp_age, String emp_zone) { this.emp_name = emp_name; this.emp_age = emp_age; this.emp_zone = emp_zone; } public String displayEmpName() { return this.emp_name; } }
Output
Employee Names + [Jack, Tom, Harry, Katie]
Advertisements