aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/design/innertypelast/InputInnerTypeLastClassRootClass.java
blob: 1c2df5a0ecaccdfe9215093bdfbf43dd524109f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.puppycrawl.tools.checkstyle.checks.design.innertypelast;

public enum InputInnerTypeLastClassRootClass {

    ALWAYS(Bits.YES), NEVER(Bits.NO);

    private interface Bits {
        public static final int YES = 1;

        public static final int NO = 4;
    }

    private final int bits;

    private InputInnerTypeLastClassRootClass(int bits) {
        this.bits = bits;
    }
}