Friday, February 20, 2026
HomeLanguagesJavaModifier isInterface(mod) method in Java with Examples

Modifier isInterface(mod) method in Java with Examples

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)

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32506 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6882 POSTS0 COMMENTS
Nicole Veronica
12005 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12099 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6967 POSTS0 COMMENTS
Umr Jansen
6956 POSTS0 COMMENTS