I'm trying to create an Object called a 'measurement'. This measurement object has only one method, calculate(). (Could be an interface or class - not sure which is best).
I have many different measurements (hundreds, possibly more), and the way I'm trying to implement them is to have a class that contains all these measurements as static methods.
So I'm essentially trying to load a static method from a class into a Measurement object, where I can call measurement.calculate().
The way I'm starting to implement it, and the only way I can think of, is to use the Method class in Reflection, where each Measurement is instantiated with a Method (the static measurement method in a different class). The Measurement class' calculate() method would then invoke the method the respective object was instantiated with.
What's the best way to implement this?
Thank you!