Bhavesh Dangi
Bhavesh Dangi

Reputation: 1059

Modify property value of the objects in list using Java 8 streams

I have a list of Fruit objects in ArrayList and I want to modify fruitName to its plural name.

Refer the example:

@Data
@AllArgsConstructor
@ToString
class Fruit {

    long id;
    String name;
    String country;
}

List<Fruit> fruits = Lists.newArrayList();
fruits.add(new Fruit(1L, "Apple", "India"));
fruits.add(new Fruit(2L, "Pineapple", "India"));
fruits.add(new Fruit(3L, "Kiwi", "New Zealand"));

Comparator<Option> byNameComparator = (e1, e2) -> e1.getName().compareToIgnoreCase(e2.getName());

fruits = fruits.stream().filter(fruit -> "India".equals(fruit.getCountry()))
            .sorted(byNameComparator).collect(Collectors.toList());

List<Fruit> fruitsWithPluralNames = Lists.newArrayList();
for (Fruit fruit : fruits) {
    fruit.setName(fruit.getName() + "s");
    fruitsWithPluralNames.add(fruit);
}

System.out.println(fruitsWithPluralNames);

// which prints [Fruit(id=1, name=Apples, country=India), Fruit(id=2, name=Pineapples, country=India), Fruit(id=3, name=Kiwis, country=New Zealand)]


Do we have any way to achieve same behavior using Java 8 streams ?

Upvotes: 90

Views: 299427

Answers (7)

GvSharma
GvSharma

Reputation: 2670

You can use map from streams.

fruits.map(i-> {
   i.setFruit();
   return i;
 }).collect(Collectors.toList();

Upvotes: 2

Vibhor Bhardwaj
Vibhor Bhardwaj

Reputation: 3091

We can change the property via map without creating new objects. Below method increase the age by 2. It will modify your original list

List<Employee> l2=list.stream().map(t->{
                t.setAge(t.getAge()*2);
                return t;
            }
        ).collect(Collectors.toList());

Upvotes: 3

Sergii Lagutin
Sergii Lagutin

Reputation: 10661

If you wanna create new list, use Stream.map method:

List<Fruit> newList = fruits.stream()
    .map(f -> new Fruit(f.getId(), f.getName() + "s", f.getCountry()))
    .collect(Collectors.toList())

If you wanna modify current list, use Collection.forEach:

fruits.forEach(f -> f.setName(f.getName() + "s"))

Upvotes: 202

Pravin Bansal
Pravin Bansal

Reputation: 4681

just for modifying certain property from object collection you could directly use forEach with a collection as follows

collection.forEach(c -> c.setXyz(c.getXyz + "a"))

Upvotes: 5

Sri
Sri

Reputation: 4853

You can use peek to do that.

List<Fruit> newList = fruits.stream()
    .peek(f -> f.setName(f.getName() + "s"))
    .collect(Collectors.toList());

Upvotes: 20

Murli
Murli

Reputation: 1258

You can do it using streams map function like below, get result in new stream for further processing.

Stream<Fruit> newFruits = fruits.stream().map(fruit -> {fruit.name+="s"; return fruit;});
        newFruits.forEach(fruit->{
            System.out.println(fruit.name);
        });

Upvotes: 2

Apostolos
Apostolos

Reputation: 10463

You can use just forEach. No stream at all:

fruits.forEach(fruit -> fruit.setName(fruit.getName() + "s"));

Upvotes: 33

Related Questions