i have this java function that searches for an object in an arraylist based on the name variable of the object
public Animal buscarAnimal(String animal){
for(Animal a: animais){
if(a.getNomeAnimal().equals(animal))return a;
}
return null;
I was wondering if it is possible to do all of the compararisons and the returning of the object all in one line, using foreach and lambdas, or maybe streams. I tried for a some time, but i'm not really a pro and only got this far
animais.forEach((Animal a)->{if(a.getNomeAnimal().equals(animal)){return a;}});
This however gives me the following error:
error: incompatible types: bad return type in lambda expression
Use a
Stream
andfilter
thenfindFist
. This returns anOptional<Animal>
. If you don't want to change your method to return anOptional<Animal>
(recommended), useorElse(null)
to get your original behaviour.In one line: