Modifier isAbstract(mod) method in Java with Examples Last Updated : 20 Sep, 2019 Comments Improve Suggest changes Like Article Like Report The isAbstract(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the abstract modifier or not. If this integer parameter represents abstract type Modifier then method returns true else false. Syntax: public static boolean isAbstract(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 abstract modifier; false otherwise. Below programs illustrate isAbstract() method: Program 1: Java // Java program to illustrate isAbstract() method import java.lang.reflect.*; public class GFG { public static void main(String[] args) { // get Method class object Method[] methods = Shape.class.getMethods(); // get Modifier Integer value int mod = methods[0].getModifiers(); // check Modifier is Abstract or not boolean result = Modifier.isAbstract(mod); System.out.println("Mod integer value " + mod + " is Abstract : " + result); } abstract class Shape { public abstract String drawShape(); } } Output: Mod integer value 1025 is Abstract : true Program 2: Java // Java program to illustrate isAbstract() import java.lang.reflect.*; public class GFG { public static void main(String[] args) { // get Method class object Method[] methods = Numbers.class.getMethods(); // get Modifier Integer value int mod1 = methods[0].getModifiers(); int mod2 = methods[1].getModifiers(); // check Modifiers are Abstract or not boolean result1 = Modifier.isAbstract(mod1); boolean result2 = Modifier.isAbstract(mod2); // print results System.out.println("Mod integer value " + mod1 + " for method " + methods[0].getName() + " is Abstract : " + result1); System.out.println("Mod integer value " + mod2 + " for method" + methods[1].getName() + " is Abstract : " + result2); } // sample abstract class abstract class Numbers { public abstract int initializeNumber(); public final int declareNumbers() { return 0; }; } } Output: Mod integer value 1025 for method initializeNumber is Abstract : true Mod integer value 17 for methoddeclareNumbers is Abstract : false References: https://docs.oracle.com/javase/10/docs/api/java/lang/reflect/Modifier.html#isAbstract(int) Comment More infoAdvertise with us Next Article Modifier isAbstract(mod) method in Java with Examples A AmanSingh2210 Follow Improve Article Tags : Java Java-Functions java-lang-reflect-package Java-Modifier Practice Tags : Java Similar Reads Modifier isStrict(mod) method in Java with Examples The isStrict(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the strictfp modifier or not. If this integer parameter represents strictfp type Modifier then method returns true else false. Syntax: public static boolean isStrict(int mod) Parameters: This met 2 min read Modifier isStatic(mod) method in Java with Examples The isStatic(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the static modifier or not. If this integer parameter represents static type Modifier then method returns true else false. Syntax: public static boolean isStatic(int mod) Parameters: This method 2 min read Modifier isTransient(mod) method in Java with Examples The isTransient(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the transient modifier or not. If this integer parameter represents transient type Modifier then method returns true else false. Syntax: public static boolean isTransient(int mod) Parameters: 2 min read 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: 2 min read Modifier isPrivate(mod) method in Java with Examples The isPrivate(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the private modifier or not. If this integer parameter represents private type Modifier then method returns true else false. Syntax: public static boolean isPrivate(int mod) Parameters: This met 2 min read Modifier isNative(mod) method in Java with Examples The isNative(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the native modifier or not. If this integer parameter represents native type Modifier then method returns true else false. Syntax: public static boolean isNative(int mod) Parameters: This method 2 min read Modifier isPublic(mod) method in Java with Examples The isPublic(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the public modifier or not. If this integer parameter represents public type Modifier then method returns true else false. Syntax: public static boolean isPublic(int mod) Parameters: This method 2 min read Modifier isProtected(mod) method in Java with Examples The isProtected(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the protected modifier or not. If this integer parameter represents protected type Modifier then method returns true else false. Syntax: public static boolean isProtected(int mod) Parameters: 2 min read Modifier isFinal(mod) method in Java with Examples The isFinal(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the final modifier or not. If this integer parameter represents final type Modifier then method returns true else false. Syntax: public static boolean isFinal(int mod) Parameters: This method acce 2 min read Modifier isVolatile(mod) method in Java with Examples The isVolatile(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the volatile modifier or not. If this integer parameter represents volatile type Modifier then method returns true else false. Syntax: public static boolean isVolatile(int mod) Parameters: This 2 min read Like