Hi there,
Given the followin enum :
public enum Car
{
NANO ("Very Cheap", "India"),
MERCEDES ("Expensive", "Germany"),
FERRARI ("Very Expensive", "Italy");
public final String cost;
public final String madeIn;
Car(String cost, String madeIn)
{
this.cost= cost;
this.madeIn= madeIn;
}
}
Does someone know a way to set up enum values via Spring IoC at construction time ?
Thank you for your time !
[Edit] Sorry, my question wasn't cristal clear. What I would like to do is injecting, at class load time, values that are harcoded in the code snippet above.
Let's say that the application must be deployed in Germany, where Nano's are better said "Nearly free", and in India where Ferrari's are "Unaffordable". In both country, there are only three cars, no more no less (hence an enum), but there "inner" values may differs. That is, a contextual initialization of immutables, which Spring is generally good at. Hope this is more clear (sorry guys, English is not my native langage, which is sometimes a real pain ;))
