summaryrefslogtreecommitdiff
path: root/plugins/java-decompiler/testData/Enum.txt
blob: 1156c8214d785d6496fc440bee4404cedf1224cd (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
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//


public enum Enum {

    E1,
    E2 {
        public void m() {
        }
    },
    E3("-"),
    E4("+") {
        public void m() {
        }
    };
    private String s;


    public void m() {
    }

    private Enum() {
        this((String)"?");
    }

    private Enum(@Deprecated String var3) {
        this.s = var3;
    }

}