Search code examples
salesforceapex-codevisualforce

How to exit an apex function?


I have an apex function which has a void return type. I want to exit the function at a specific position. Is this possible in apex without changing return type pagereference?


Solution

  • In apex, the return keyword signals to immediately stop processing statements in that function.

    public void doNothing() {
         return;
    }