blob: 32a8ffdfbaa0c380142cc8c1c0b3a3a15102664f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<#import "_features.html" as f>
<@f.scaffold title="val" logline="Finally! Hassle-free final local variables.">
<@f.history>
<p>
<code>val</code> was introduced in lombok 0.10.
</p>
</@f.history>
<@f.overview>
<p>
You can use <code>val</code> as the type of a local variable declaration instead of actually writing the type. When you do this, the type will be inferred from the initializer expression. The local variable will also be made final. This feature works on local variables and on foreach loops only, not on fields. The initializer expression is required.
</p><p>
<code>val</code> is actually a 'type' of sorts, and exists as a real class in the <code>lombok</code> package. You must import it for val to work (or use <code>lombok.val</code> as the type). The existence of this type on a local variable declaration triggers both the adding of the <code>final</code> keyword as well as copying the type of the initializing expression which overwrites the 'fake' <code>val</code> type.
</p><p>
<em>WARNING: This feature does not currently work in NetBeans.</em>
</p>
</@f.overview>
<@f.snippets name="val" />
<@f.confKeys>
<dt>
<code>lombok.val.flagUsage</code> = [<code>warning</code> | <code>error</code>] (default: not set)
</dt><dd>
Lombok will flag any usage of <code>val</code> as a warning or error if configured.
</dd>
</@f.confKeys>
<@f.smallPrint>
<p>
For compound types, the most common superclass is inferred, not any shared interfaces. For example, <code>bool ? new HashSet() : new ArrayList()</code> is an expression with a compound type: The result is both <code>AbstractCollection</code> as well as <code>Serializable</code>. The type inferred will be <code>AbstractCollection</code>, as that is a class, whereas <code>Serializable</code> is an interface.
</p><p>
In ambiguous cases, such as when the initializer expression is <code>null</code>, <code>java.lang.Object</code> is inferred.
</p>
</@f.smallPrint>
</@f.scaffold>
|