In apache.commons.collections there is a class called MapUtils which have these two methods to define a Map which can create on demand objects for the map:
So I can use a factory to instantiate the object
Factory factory = new Factory() {
public Object create() {
return new Object();
}
}
or a transformer to instantiate the new object depending on the key of the map
Transformer factory = new Transformer() {
public Object transform(Object mapKey) {
return new Object(mapKey);
}
}
There's a similar class for Lists: ListUtils, but this class only has a method with a Factory:
I'd like to transform the object like in the map situation but using the index of the object in the list instead of the key in the map.
Transformer factory = new Transformer() {
public Object transform(int index) {
return new Object(index);
}
}
My question is why there is not a lazyList(List list, Transformer transformer)? Does apache provide any other List to do this or do I have to build my custom implementation?
Thanks.