1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import lombok.ToString; @ToString public class ToStringNewStyle { @ToString.Include(name = "a") int b; double c; int f; @ToString.Include(name = "e") int d; @ToString.Include int f() { return 0; } int g; @ToString.Include(rank = -1) int h; int i; @ToString.Exclude int j; }