ConfigMe
ConfigMe copied to clipboard
Add EnumSetProperty
Introduce an EnumSetProperty that goes along with EnumSetPropertyType.
To do
- Create a class
EnumSetPropertyin the same package asSetProperty- It should extend
SetPropertyand use the constructor that takesPropertyType<Set<E>>as argument - Call the constructor with the already existing
EnumSetPropertyType - Expected constuctors on EnumSetProperty are
EnumSetProperty(String path, Class<E> enumClass, E... defaultValue)andEnumSetProperty(String path, Class<E> enumClass, EnumSet<E> defaultValue)
- It should extend
- Add tests (see other test classes, like
LowercaseStringSetPropertyTest)