// "Make 'default' the last case" "true-preview" class X { void test(Object obj) { switch (obj) { default -> System.out.println("default"); case Integer i -> System.out.println("Integer"); case String s when s.isEmpty() -> System.out.println("empty String"); case null -> System.out.println("null"); } } }