Java Enum 類型

public enum ParseType { JSON("json"), XML("xml"), FILE("file"); private String type; private ParseType(String type) { this.type = type; } public String getType()
相關文章
相關標籤/搜索