Hi,
I am writing an application in which I have following 4 methods:
int startProcess(int a) { ... }
String startProcess(String a) { ... }
float startProcess(float a) { ... }
I want to declare a method that should be generic and that should serve all the purposes.
Please advice.
- PEACE