I have a list of my own class object in android class.
I want to do two things with that list.
First I want to Apply order by like this I used to do with C# code.
myList.orderby(x => x.energyLevel);
Secondly I want to fetch some data from that list. Like this
myList.where(x=>x.gender=="male");
How to do this in android?