aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/GetterEnum.java
blob: 841325c0f3409784979d37976dc052ca6ed46361 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
enum GetterEnum {
	ONE(1, "One");
	private final int id;
	private final String name;
	@java.lang.SuppressWarnings("all")
	@javax.annotation.Generated("lombok")
	private GetterEnum(final int id, final String name) {
		this.id = id;
		this.name = name;
	}
	@java.lang.SuppressWarnings("all")
	@javax.annotation.Generated("lombok")
	public int getId() {
		return this.id;
	}
	@java.lang.SuppressWarnings("all")
	@javax.annotation.Generated("lombok")
	public String getName() {
		return this.name;
	}
}