Creating EnumType Solr using SolrJ
问题 I need to create a schema which will containt few enums. I'm trying to do that using SolrJ. I've found this link DefininganEnumFieldinschema but I couldn't find any examples using Schema API or SolrJ. Here is my enum: public enum Attributes { SPONSORED("sponsored"), TOP_RATED("top-rated"), GENERIC("generic"), PROMOTION("promotion"), QUICK_ORDER("quick-order"); private String value; Attributes(String value) { this.value = value; } @Override @JsonValue public String toString() { return String