/* * Copyright 2013 Guidewire Software, Inc. */ package gw.lang.reflect; public interface IEnumConstant { public String getCode(); public int getOrdinal(); public String getDisplayName(); }