How can I update String object from void?
Now it gives me an error: The final local variable sObj cannot be assigned, since it is defined in an enclosing type.
String object = "";
String object2 = "";
String object3 = "";
String object4 = "";
String object5 = "";
digitInput(object); //update string object
digitInput(object4); // update string object4
private void digitInput(final String sObj) {
....
sObj = NEW_VALUE; //With this I want to update passed object
....
}