Created
July 25, 2018 16:02
-
-
Save suddeb/0a6795ca82c313a181017b1ea4a53462 to your computer and use it in GitHub Desktop.
SwitchFunction
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public with sharing class SwitchFunction { | |
public static void switchOnString(String value){ | |
switch on value { | |
when 'India' { | |
System.Debug('I am in India'); | |
}when 'Canada' { | |
System.Debug('I am in Canada'); | |
}when else { | |
System.Debug('I am in Earth'); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment