package com.pollex.pam.enums; public enum CustomerDetailEnum { ID("CustomerId"), NAME("CustomerName"), ACCOUNT("CustomerAccount"); private final String value; CustomerDetailEnum(String value) { this.value = value; } public String getValue() { return value; } }