[BAEL-3392] Add code samples for BAEL-3392 Debugging Java 8 Streams with IntelliJ

This commit is contained in:
Martin van Wingerden
2019-10-29 16:17:28 +01:00
parent 18c6a1a0ab
commit b264937ac6
3 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package com.baeldung.streams.debug.entity;
public class Customer {
private final String name;
private final int age;
public Customer(String name, int age) {
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public int getAge() {
return age;
}
}