Package cdc.enums
Interface DynamicEnum
-
- All Known Subinterfaces:
ForestDynamicEnum<V>,ListDynamicEnum<V>
- All Known Implementing Classes:
AbstractForestDynamicEnum,AbstractListDynamicEnum
public interface DynamicEnumBase interface of dynamic enumerations.- Author:
- Damien Carbonne
-
-
Field Summary
Fields Modifier and Type Field Description static Comparator<DynamicEnum>NAME_COMPARATORComparator that uses names.static Comparator<DynamicEnum>QNAME_COMPARATORComparator that uses qualified names.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()StringgetQName()
-
-
-
Field Detail
-
NAME_COMPARATOR
static final Comparator<DynamicEnum> NAME_COMPARATOR
Comparator that uses names.
-
QNAME_COMPARATOR
static final Comparator<DynamicEnum> QNAME_COMPARATOR
Comparator that uses qualified names.
-
-