// FormatType.java public enum FormatType { XML { public String getContentType() { return "xml"; } }, JSON { public String getContentType() { return "plain"; } }; public String getContentType() { return null; } } // 사용 FormatType.XML.getContentType(); // xml FormatType.JSON.getContentType(); // plain
댓글을 달아 주세요