When calling Spring's "Validate" from Eclipse, I get a lot of errors when I want to get back an enum using Enum's implicit "valueOf" method.
For example:
<bean id="docFamily" class="...DocFamily" factory-method="valueOf">
<constructor-arg>
<value>LOGY</value>
</constructor-arg>
</bean>
has Eclipse telling me:
Non-static factory method 'valueOf' with 1 arguments not found in factory bean class ...
However as I understand it from the documentation:
BeanWrapperImpl supports JDK 1.5 enums and old-style enum classes: String values will be treated as enum value names
So the above should work right? (btw is 'constructor-arg' the correct tag in that case, shouldn't it be some 'method-arg'?).
Why is Eclipse/Spring's "Validate" giving me that error message?