У меня есть класс, который косвенно реализует интерфейс (его реализует суперкласс или супер-классный класс), и я хочу знать, реализует ли интерфейс интерфейс или нет.
В терминах кодирования:
import java.lang.reflect.Type;
class My implements MyName{
}
public class Tset extends My implements yourName{
public static void main(String[] args) {
Class[] allClassAndInterfaces = Tset.class.getInterfaces();
//but allClassAndInterfaces is not giving me the MyName Interface
//although it gives me YourName Interface
System.out.println(ArrayUtils.toString(lits));
}
}