Builder Pattern: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Design Patterns =Overview=")
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
=External=
* https://en.wikipedia.org/wiki/Builder_pattern
=Internal=
=Internal=


* [[Design_Patterns#Other|Design Patterns]]
* [[Design_Patterns#Creational|Design Patterns]]


=Overview=
=Overview=
There are a series of ''intermediate operations'' followed by a <tt>build()</tt> terminal operation invocation.
The Java 8 Streams API uses a concept similar to the builder pattern to implement [[Java_8_Streams_API#Intermediate_Operations|intermediate operations]].

Latest revision as of 17:48, 7 January 2019

External

Internal

Overview

There are a series of intermediate operations followed by a build() terminal operation invocation.

The Java 8 Streams API uses a concept similar to the builder pattern to implement intermediate operations.