aboutsummaryrefslogtreecommitdiff
path: root/website/features/experimental/Accessors.html
diff options
context:
space:
mode:
Diffstat (limited to 'website/features/experimental/Accessors.html')
-rw-r--r--website/features/experimental/Accessors.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/website/features/experimental/Accessors.html b/website/features/experimental/Accessors.html
index 79c3d272..20590a07 100644
--- a/website/features/experimental/Accessors.html
+++ b/website/features/experimental/Accessors.html
@@ -72,6 +72,19 @@
</div>
</div>
<div style="clear: left;"></div>
+ <div class="overview confKeys">
+ <h3>Supported configuration keys:</h3>
+ <dl>
+ <dt><code>lombok.accessors.chain</code> = [<code>true</code> | <code>false</code>] (default: false)</dt>
+ <dd>If set to <code>true</code>, any class that either doesn't have an <code>@Accessors</code> annotation, or it does, but that annotation does not have an explicit value for the <code>chain</code> parameter, will act as if <code>@Accessors(chain = true)</code> is present.</dd>
+ <dt><code>lombok.accessors.fluent</code> = [<code>true</code> | <code>false</code>] (default: false)</dt>
+ <dd>If set to <code>true</code>, any class that either doesn't have an <code>@Accessors</code> annotation, or it does, but that annotation does not have an explicit value for the <code>fluent</code> parameter, will act as if <code>@Accessors(fluent = true)</code> is present.</dd>
+ <dt><code>lombok.accessors.prefix</code> += <em>a field prefix</em> (default: empty list)</dt>
+ <dd>This is a list property; entries can be added with the <code>+=</code> operator. Inherited prefixes from parent config files can be removed with the <code>-=</code> operator. Any class that either doesn't have an <code>@Accessors</code> annotation, or it does, but that annotation does not have an explicit value for the <code>prefix</code> parameter, will act as if <code>@Accessors(prefix = {<em>prefixes listed in configuration</em>})</code> is present.</dd>
+ <dt><code>lombok.accessors.flagUsage</code> = [<code>warning</code> | <code>error</code>] (default: not set)</dt>
+ <dd>Lombok will flag any usage of <code>@Accessors</code> as a warning or error if configured.</dd>
+ </dl>
+ </div>
<div class="overview">
<h3>Small print</h3><div class="smallprint">
<p>