class A { void test(Object obj) { if (obj instanceof String s && s.trim().isEmpty()) { System.out.println("Found"); } } }