Skip to content

Instantly share code, notes, and snippets.

@suddeb
Created July 25, 2018 16:02
Show Gist options
  • Save suddeb/0a6795ca82c313a181017b1ea4a53462 to your computer and use it in GitHub Desktop.
Save suddeb/0a6795ca82c313a181017b1ea4a53462 to your computer and use it in GitHub Desktop.
SwitchFunction
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