For example if I had the method:
public static String exampleMethod(String a, String b) {
}
Is it possible to make the same method with the same name like this:
public static String exampleMethod(String a, int b) {
}
And is it possible for exampleMethod to return either a int or a string?