What is the result of executing the following code using the new features?
public class SwitchPatternMatchingDemo {
public static void main(String[] args) {
String str = null;
nullDemo(str);
}
static void nullDemo(String s) {
switch (s) {
case null -> System.out.println("null case");
case "Hello" -> System.out.println("Hello");
case "Hi" -> System.out.println("Hi");
default -> System.out.println("No Match!");
}
}
}