From 160b737dcc48071575d67748c10cdfe5c25179d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ilkka=20Sepp=C3=A4l=C3=A4?= Date: Wed, 13 Nov 2019 18:16:50 +0200 Subject: [PATCH] Add another real world example for Builder --- builder/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/builder/README.md b/builder/README.md index bde0104b5..a061f8afa 100644 --- a/builder/README.md +++ b/builder/README.md @@ -126,6 +126,7 @@ Use the Builder pattern when * [java.lang.StringBuffer](http://docs.oracle.com/javase/8/docs/api/java/lang/StringBuffer.html#append-boolean-) * All implementations of [java.lang.Appendable](http://docs.oracle.com/javase/8/docs/api/java/lang/Appendable.html) * [Apache Camel builders](https://github.com/apache/camel/tree/0e195428ee04531be27a0b659005e3aa8d159d23/camel-core/src/main/java/org/apache/camel/builder) +* [Apache Commons Option.Builder](https://commons.apache.org/proper/commons-cli/apidocs/org/apache/commons/cli/Option.Builder.html) ## Credits