Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 235 Bytes

File metadata and controls

9 lines (8 loc) · 235 Bytes

buildable-interface

An interface that provides a fluent API for constructing Java objects.

Example usage:

Pojo pojo = new Pojo().build(p -> p
                      .set(p::name, "joe")
                      .set(p::age, 1));