enum Month {
    JANUARY, //Constant
    FEBRUARY(2), //Constant
    MARCH(3); //Constant

    private final int i; //Attribute
    private Month() { //Constructor
        i = 1;
    }
    private Month(int i) { // Constructor
        this.i = i;
    }
    public void methodOfEnum() { //Method
    }
}