Java data type enum in Servoy

Does some one know if Servoy can take java data type “enum” as parameter? I have a list of values defined in java bean in type “enum”. I need to pass this values to form to be shown in a combo box.

lsjiang

The nicest thing to do is to convert this in the bean into an array…

Thank you.