1.1 KiB

layout, title, folder, permalink, categories, tags
layout title folder permalink categories tags
pattern Fluent Interface fluentinterface /patterns/fluentinterface/ Architectural Java

Intent: A fluent interface provides an easy-readable, flowing interface, that often mimics a domain specific language. Using this pattern results in code that can be read nearly as human language.

Fluent Interface

Applicability: Use the Fluent Interface pattern when

  • you provide an API that would benefit from a DSL-like usage
  • you have objects that are difficult to configure or use

Real world examples:

Credits