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