Java / Methods
What is fluent interface in Java?
The fluent interface enables to apply multiple properties/setters on an object just by using dots(.) without having to use the actual object reference.
Fluent interface is also known as fluent API.
new Employee().setName("Jacob") .setAge(46) .setActive(true);
More Related questions...