diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-01-26 13:52:50 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-01-26 13:52:50 +0100 |
commit | 30beb498ca46772e60dd321a07e19be1d08d1e9a (patch) | |
tree | 7fe984d4c745408b1dd2cfc9f51d3205a258bbf1 /website/features | |
parent | 75da1e2481d077d6c39b91aa9d364a397a41461f (diff) | |
download | lombok-30beb498ca46772e60dd321a07e19be1d08d1e9a.tar.gz lombok-30beb498ca46772e60dd321a07e19be1d08d1e9a.tar.bz2 lombok-30beb498ca46772e60dd321a07e19be1d08d1e9a.zip |
optimized the creation for singular lists/collections.
Diffstat (limited to 'website/features')
-rw-r--r-- | website/features/Builder.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/features/Builder.html b/website/features/Builder.html index b4b7fb55..5cf7c23e 100644 --- a/website/features/Builder.html +++ b/website/features/Builder.html @@ -91,7 +91,7 @@ <code>@Singular</code> can only be applied to collection types for which lombok has a recipe to produce the singular methods. Currently, the supported types are: <ul> <li><a href="http://docs.oracle.com/javase/8/docs/api/java/util/package-summary.html"><code>java.util</code></a>:<ul> - <li><code>Collection</code> and <code>List</code> (backed by a compacted unmodifiable <code>ArrayList</code> in the general case).</li> + <li><code>Iterable</code>, <code>Collection</code>, and <code>List</code> (backed by a compacted unmodifiable <code>ArrayList</code> in the general case).</li> <li><code>Set</code>, <code>SortedSet</code>, and <code>NavigableSet</code> (backed by a smartly sized unmodifiable <code>HashSet</code> or <code>TreeSet</code> in the general case).</li> <li><code>Map</code>, <code>SortedMap</code>, and <code>NavigableMap</code> (backed by a smartly sized unmodifiable <code>HashMap</code> or <code>TreeMap</code> in the general case).</li> </ul></li> |