aboutsummaryrefslogtreecommitdiff
path: root/doc/PlannedExtensions.txt
blob: d6c5ffd749a3819f1b162350bf25c9c35422d74c (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
37
38
39
40
41
42
43
44
45
Planned lombok features
=======================

## @Getter

Put on any field; like so:

    private @Getter AnyType foo;

This will generate the following method:

    public AnyType getFoo() {
        return foo;
    }

Optionally you can generate a different access level by specifying the `AccessLevel` in the annotation, like so:

    private @Getter(AccessLevel.PROTECTED) AnyType foo;

## @Setter

Like @Getter, but creates setters.

## @Data

Creates getters, setters (for non-final fields), toString, equals, and hashCode, as well as a constructor, or, if you wish,
a 'static factory method'.

## @Property

## @AutoClose

## @Synchronized

## @Generator

## @SneakyThrows

# Maybes:

## @RunInEDT

## @SaneEquals

## List Comprehensions