I have a class that contains an Enum to do calculation. Each Enum uses some or all of the non-static variables from the outer class. However since they can't access instance variable, I have to pass in them as parameters.
public class Outer{
ClassA a;
ClassB b;
ClassC c;
Map<MyEnum,Double> results= new EnumMap(MyEnum.class);
private enum MyEnum{
X{ public double calc(ClassA _a){ dostuff } },
Y{ public double calc(ClassB _b,ClassC _c){ dostuff } },
Z{ public double calc(ClassA _a,ClassB _b){ dostuff } };
}
public void doCalc(){
for(MyEnum item:MyEnum.values()){
result.get(item) = item.calc(...);//Not uniform here
}
}
}
My problem is that I can't have a uniform way to pass in the parameters in the for-loop. I could make each Enum method takes all classes like
public double calc(ClassA _a,ClassB _b,ClassC _c){ dostuff}
But if I have more classes, the parameter will look too ugly. Is there a better way to do this kind of thing?