I have two classes Foo1 and Foo2 very similar fields.
And I have a convert method that accepts Foo1 class as shown below
public static <T> T convert(IFoo1 foo1, Class<T extends IFoo2> clz) {
    T foo2 = clz.newInstance();
    // Setter methods
    return foo2; 
}
But I'm getting error : Syntax error on token "extends", , expected
Both the classes Foo1 and Foo2 implements interface IFoo1 and IFoo2.
 
    