Skip to main content

All Questions

2 votes
1 answer
7k views

Builder with constructor or factory method?

Let's say I have a class Dot with a builder: public class Dot { private final Double x; private final Double y; private final Color color; private Dot(Double x, Double y, Color color)...
AplusKminus's user avatar