Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Modifier isInterface(mod) method in Java with Examples

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The isInterface(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the interface modifier or not. If this integer parameter represents interface type Modifier then method returns true else false.

Syntax:

public static boolean isInterface(int mod)

Parameters: This method accepts a integer names as mod represents a set of modifiers.

Return: This method returns true if mod includes the interface modifier; false otherwise.

Below programs illustrate isInterface() method:
Program 1:




// Java program to illustrate isInterface() method
  
import java.lang.reflect.Modifier;
  
public class GFG {
  
    public static void main(String[] args)
        throws NoSuchFieldException
    {
  
        // get Modifier Integer value
        int mod = Symbols.class.getModifiers();
  
        // check Modifier is interface or not
        boolean result = Modifier.isInterface(mod);
  
        System.out.println("Mod integer value "
                           + mod + " is interface : "
                           + result);
    }
  
    interface Symbols {
        void createSynbols();
    }
}


Output:

Mod integer value 1544 is interface : true

Program 2:




// Java program to illustrate isInterface()
  
import java.lang.reflect.Modifier;
  
public class GFG {
  
    public static void main(String[] args)
        throws NoSuchFieldException
    {
  
        // get Modifier Integer value
        int mod = Calculator.class.getModifiers();
  
        // check Modifier is Interface or not
        boolean result = Modifier.isInterface(mod);
  
        System.out.println("Mod integer value "
                           + mod + " is Interface : "
                           + result);
    }
  
    abstract class Calculator {
        abstract void addNumbers();
    }
}


Output:

Mod integer value 1024 is Interface : false

References: https://docs.oracle.com/javase/10/docs/api/java/lang/reflect/Modifier.html#isInterface(int)


My Personal Notes arrow_drop_up
Last Updated : 20 Sep, 2019
Like Article
Save Article
Similar Reads
Related Tutorials