MCPcopy Create free account
hub / github.com/amigoscode/java-streams / Person

Method Person

src/test/java/com/amigoscode/beans/Person.java:12–24  ·  view source on GitHub ↗
(Integer id,
                  String firstName,
                  String lastName,
                  String email,
                  String gender,
                  Integer age)

Source from the content-addressed store, hash-verified

10 private final Integer age;
11
12 public Person(Integer id,
13 String firstName,
14 String lastName,
15 String email,
16 String gender,
17 Integer age) {
18 this.id = id;
19 this.firstName = firstName;
20 this.lastName = lastName;
21 this.email = email;
22 this.gender = gender;
23 this.age = age;
24 }
25
26 public Integer getId() {
27 return id;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected