I have one Enum like Below
public enum Game {
    CRICKET("cricket"),
    FOOTBALL("football"),
    VOLLEYBALL("volleyball")'
    private String val;
    private Game(String val) {
        this.val = val;
    }
    public String getValue() {
        return this.val;
    }
}
In here, Do I want to overide the equal(),hashCode(),toString() methods based on this What issues should be considered when overriding equals and hashCode in Java?
 
     
     
    