I have a variable in class XYZ named abc. The return type of that variable is List but earlier its return type was String.So, now when a list comes as a input it is processed but when a String comes it throws Exception. the need is to make it compatible for both datatypes List as well as String. Please help
private List<String> abc;
public List<String> getAbc() {
return abc;
}
public void setAbc(List<String> abc) {
this.abc = abc;
}
The concept you are looking for is method overloading
.
A method is defined by its name and all its parameters, so you can define two different methods like this:
public void setAbc(List<String> abc) {
this.abc = abc;
}
public void setAbc(String abc) {
// Collections.singletonList creates an *immutable* list
// See: https://docs.oracle.com/javase/10/docs/api/java/util/Collections.html#singletonList(T)
this.abc = Collections.singletonList(abc);
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With