Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.entity.cs;public enum TicketSearchType {PARTNER_NAME("Partner Name"),TICKET_ID("Ticket Id"),ASSIGNEE("assignee");private String value;private TicketSearchType(String value){this.value = value;}public String getValue() {return value;}}