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

Method Car

src/test/java/com/amigoscode/beans/Car.java:12–25  ·  view source on GitHub ↗
(
            Integer id,
            String make,
            String model,
            String color,
            Integer year,
            Double price)

Source from the content-addressed store, hash-verified

10 private final Double price;
11
12 public Car(
13 Integer id,
14 String make,
15 String model,
16 String color,
17 Integer year,
18 Double price) {
19 this.id = id;
20 this.make = make;
21 this.model = model;
22 this.color = color;
23 this.year = year;
24 this.price = price;
25 }
26
27 public Integer getId() {
28 return id;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected