blob: 496953901fc772df68214992f28527e103e2a9d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
@lombok.ToString
class ToStringAutoExclude {
int x;
String $a;
transient String b;
}
@lombok.ToString
class ToStringAutoExclude2 {
int x;
@lombok.ToString.Include
String $a;
transient String b;
}
|