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