Java: Useful ways to work with data

theoneamin
3 min readJan 16, 2023

This is a continuation of the previous article. Since there is an additional dependency, this article could not be classified as using java streams. Check it out here: https://medium.com/@theoneamin/useful-java-streams-d48266effe59

List<property> from list of object

For example if we have a list of user objects, we can get a list of the usernames by using map().

--

--