1 16 17 package org.springframework.core.enums; 18 19 import java.util.Map ; 20 import java.util.Set ; 21 22 29 public interface LabeledEnumResolver { 30 31 38 public Set getLabeledEnumSet(Class type) throws IllegalArgumentException ; 39 40 49 public Map getLabeledEnumMap(Class type) throws IllegalArgumentException ; 50 51 58 public LabeledEnum getLabeledEnumByCode(Class type, Comparable code) throws IllegalArgumentException ; 59 60 67 public LabeledEnum getLabeledEnumByLabel(Class type, String label) throws IllegalArgumentException ; 68 69 } 70 | Popular Tags |