blob: cdc6f5bccae378544aa34c4014f391cb77e5d270 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import lombok.ToString;
public @ToString class ToStringNewStyle {
@ToString.Include(name = "a") int b;
double c;
int f;
@ToString.Include(name = "e") int d;
int g;
@ToString.Include(rank = (- 1)) int h;
int i;
@ToString.Exclude int j;
public ToStringNewStyle() {
super();
}
@ToString.Include int f() {
return 0;
}
public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() {
return (((((((((((((("ToStringNewStyle(a=" + this.b) + ", c=") + this.c) + ", e=") + this.d) + ", f=") + this.f()) + ", g=") + this.g) + ", i=") + this.i) + ", h=") + this.h) + ")");
}
}
|