Class getGenericInterfaces() method in Java with Examples Last Updated : 12 Jul, 2025 Comments Improve Suggest changes 1 Likes Like Report The getGenericInterfaces() method of java.lang.Class class is used to get the type of interfaces directly implemented by this entity. This entity can be a class or an interface. The method returns an array of type of interfaces directly implemented by this entity. Syntax: public Type[] getGenericInterfaces() Parameter: This method does not accept any parameter. Return Value: This method returns an array of type of interfaces directly implemented by this entity. Below programs demonstrate the getGenericInterfaces() method. Example 1: Java // Java program to demonstrate // getGenericInterfaces() method import java.util.*; public class Test { public static void main(String[] args) throws ClassNotFoundException { // returns the Class object for this class Class myClass = Class.forName("Test"); System.out.println("Class represented by myClass: " + myClass.toString()); // Get the type of interfaces of myClass // using getGenericInterfaces() method System.out.println( "GenericInterfaces of myClass: " + Arrays.toString( myClass.getGenericInterfaces())); } } Output: Class represented by myClass: class Test GenericInterfaces of myClass: [] Example 2: Java // Java program to demonstrate // getGenericInterfaces() method import java.util.*; interface Arr { } public class Test implements Arr { public static void main(String[] args) throws ClassNotFoundException { // returns the Class object Class myClass = Class.forName("Test"); // Get the type of interfaces of myClass // using getGenericInterfaces() method System.out.println( "GenericInterfaces of myClass: " + Arrays.toString( myClass.getGenericInterfaces())); } } Output: GenericInterfaces of myClass: [interface Arr] Reference: https://docs.oracle.com/javase/9/docs/api/java/lang/Class.html#getGenericInterfaces-- Create Quiz Comment S srinam Follow 1 Improve S srinam Follow 1 Improve Article Tags : Java Java-lang package Java-Functions Java.lang.Class Explore Java BasicsIntroduction to Java3 min readJava Programming Basics9 min readJava Methods6 min readAccess Modifiers in Java4 min readArrays in Java7 min readJava Strings7 min readRegular Expressions in Java3 min readOOP & InterfacesClasses and Objects in Java5 min readAccess Modifiers in Java4 min readJava Constructors4 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages2 min readJava Interface7 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java4 min readIterator in Java4 min readJava Comparator Interface5 min readException HandlingJava Exception Handling6 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java7 min readFile Handling in Java4 min readJava Method References7 min readJava 8 Stream Tutorial7 min readJava Networking6 min readJDBC Tutorial5 min readJava Memory Management3 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers1 min readJava Programs - Java Programming Examples7 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions5 min readJava Quiz1 min readJava Project Ideas For Beginners and Advanced15+ min read Like