Skip to content

Commit b0acc58

Browse files
committed
docs: allow more lombok annotations in README.md
1 parent 785f670 commit b0acc58

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,12 +128,18 @@ The following are lists of conventions that either *should* be followed or *must
128128
- Lombok should be used to reduce boilerplate code and increase readability:
129129
- Generation for:
130130
- [Getters/Setters](https://projectlombok.org/features/GetterSetter)
131+
- [Delegation](https://projectlombok.org/features/experimental/Delegate)
131132
- [equals()/hashCode()](https://projectlombok.org/features/EqualsAndHashCode)
132133
- [Constructors](https://projectlombok.org/features/constructor)
134+
- [Copy Constructors as Setters](https://projectlombok.org/features/With)
135+
- [toString()](https://projectlombok.org/features/ToString)
133136
- [Builders](https://projectlombok.org/features/Builder) including with [inheritance](https://projectlombok.org/features/experimental/SuperBuilder)
134137
- [Loggers](https://projectlombok.org/features/log): preferred is `@Log4j2`
135138
- [Utilities](https://projectlombok.org/features/experimental/UtilityClass)
136139
- [Exceptions](https://projectlombok.org/features/experimental/StandardException)
140+
- Threading:
141+
- [Synchronization](https://projectlombok.org/features/Synchronized)
142+
- [Locking](https://projectlombok.org/features/Locked)
137143
- Can be used to set access levels of methods ([Getters/Setters](https://projectlombok.org/features/GetterSetter) and [Constructors](https://projectlombok.org/features/constructor))
138144
- Can be used with annotations on methods and constructors using [onX](https://projectlombok.org/features/experimental/onX)
139145
- Can be used to include or exclude fields for [equals()/hashCode()](https://projectlombok.org/features/EqualsAndHashCode)

0 commit comments

Comments
 (0)