looking for some help... In Java - i am trying to find if i can have a helper class which basically has several methods:
class helper{
method1(){doing something}
method2(){doing something}
method_important(String a, String b){doing something}
method_important(String a, int b, String b){doing something}
}
Notably i want to call helper class with method_important from other classes but want a flexiblity to pass desired arguments as i it can be two strings or i may have to pass String, int, String.... is it even possible? if no? what is best way to achieve it? Problem is from my other methods i need to pass different type of variables..