aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/GetterAccessLevel.java
blob: 2574340aaf797dccac24ff4fc9870f257b375536 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
class GetterAccessLevel {
	boolean isNone;
	boolean isPrivate;
	boolean isPackage;
	boolean isProtected;
	boolean isPublic;
	String noneString;
	String privateString;
	String packageString;
	String protectedString;
	String publicString;
	String value;
	@java.lang.SuppressWarnings("all")
	private boolean isPrivate() {
		return this.isPrivate;
	}
	@java.lang.SuppressWarnings("all")
	boolean isPackage() {
		return this.isPackage;
	}
	@java.lang.SuppressWarnings("all")
	protected boolean isProtected() {
		return this.isProtected;
	}
	@java.lang.SuppressWarnings("all")
	public boolean isPublic() {
		return this.isPublic;
	}
	@java.lang.SuppressWarnings("all")
	private String getPrivateString() {
		return this.privateString;
	}
	@java.lang.SuppressWarnings("all")
	String getPackageString() {
		return this.packageString;
	}
	@java.lang.SuppressWarnings("all")
	protected String getProtectedString() {
		return this.protectedString;
	}
	@java.lang.SuppressWarnings("all")
	public String getPublicString() {
		return this.publicString;
	}
	@java.lang.SuppressWarnings("all")
	public String getValue() {
		return this.value;
	}
}