I'm looking for a better pattern to implement something like this:
public static enum Foo {
VAL1( new Bar() ),
VAL2( new FooBar() );
private final bar;
private Foo( IBar bar ) {
this.bar = bar;
}
public IBar getBar() { return bar; }
}
The issue is that accessing the enum causes side effects. Say Bar opens a DB connection and the like. So even if I just need VAL2, I have to pay the price to setup VAL1.
OTOH, the value of bar is tightly coupled to the enum. It's like an static attribute but enum has no lazy initialization. I could make Foo.getBar() abstract and use anonymous classes but then, I would have to pay the setup price every time.
Is there a cheap way to add lazy init for attributes of enums?
[EDIT] TO make this clear:
getBar()is called millions of times. It must be blinding fast.We're talking singleton here (just like
enumitself). Only a single instance must ever be created.For additional points, unit tests should be able to override this behavior.
Instances must be created lazily.
One solution we tried as to register the values as beans in Spring:
<bean id="VAL1.bar" class="...." />
That allowed us to specify the values at runtime and override them in tests. Unfortunately, it means we have to inject the ApplicationContext into the enum somehow. So we need a global variable for that. cringe
What's worse: Looking up the value in getBar() is way too slow. We can synchronize getBar() and use if(bar!= null)bar=context.get(name()+".bar"); to solve this.
But is there a way without this that is as safe and fast as using the enum values themselves?