Hi Paritosh,
I imagine that you can just save it as a String column and use the
name() method on the enum. Relational databases don't typically have a
concept similar to java's enums so you should probably go for
something that will just be able to store the information. Besides -
input columns in AnalyzerBeans only support String, Number, Boolean
and Date, so it has to be something convertible to one of these types,
and I think String comes closest (alternatively Number - using the
ordinal() of the enum, but I prefer String as ordinals may change if
you edit the enum).
Regards,
Kasper