This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
namespace app\models\search; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package gr.alx.leavesmanagement.leave.enums; | |
public enum LeaveType { | |
NORMAL("Normal"), SICK("Sick"), UNPAID("Unpaid"); | |
private String leaveType; | |
LeaveType(String leaveType) { | |
this.leaveType = leaveType; | |
} | |
public String toString() { | |
return leaveType; | |
} |