how to end a method in java code example
Example: how to interrupt a void java
public void someMethod() {
//... a bunch of code ...
if (someCondition()) {
return; //This exits the method
}
//... otherwise do the following...
}