Hi all
i have the following use case.
i have a bean whose setter accepts a Collection of <MyEnum>

Code:
 MyEnum {
  VALUE1,
  VALUE2,
  VALUE3
}
Code:
setAllowedMyEnum(Collection<MyEnum> enums)
the allowed MyEnums are defined in a property file
Code:
allowed.myEnum=VALUE1,VALUE2
btw, the value1, value2 abo

How do i go from reading a comma separated enum values to setting a property in my bean?

thanks and regards
marco