Modifiers methodModifiers() method in Java with Examples Last Updated : 24 Sep, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report The methodModifiers() method of java.lang.reflect.Modifier class is used to get an integer value together with the modifiers of source language that can be applied to a Method. Syntax: public static boolean methodModifiers() Parameters: This method accepts nothing. Return: This method returns an int value OR-ing together the source language modifiers that can be applied to a Method. Below programs illustrate methodModifiers() method: Program 1: Java // Java program to illustrate // methodModifiers() method import java.lang.reflect.*; public class GFG { public static void main(String[] args) throws NoSuchFieldException, SecurityException { // get Modifier using methodModifiers() int result = Modifier.methodModifiers(); System.out.println( "Method Modifiers: " + Modifier.toString(result)); } } Output: Method Modifiers: public protected private abstract static final synchronized native strictfp Program 2: Java // Java program to illustrate // methodModifiers() method import java.lang.reflect.*; public class GFG { public static void main(String[] args) throws NoSuchFieldException, SecurityException { // get Modifier using methodModifiers() int result = Modifier.methodModifiers(); System.out.println("Int Value: " + result); } } Output: Int Value: 3391 References: https://docs.oracle.com/javase/10/docs/api/java/lang/reflect/Modifier.html#methodModifiers() Comment More infoAdvertise with us Next Article Modifier isStrict(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 Modifiers parameterModifiers() method in Java with Examples The parameterModifiers() method of java.lang.reflect.Modifier class is used to get an integer value together with the modifiers of source language that can be applied to a parameter. Syntax: public static boolean parameterModifiers() Parameters: This method accepts nothing. Return: This method retur 1 min read Modifiers toString() method in Java with Examples The toString() method of java.lang.reflect.Modifier class is used to get a string representing the access modifier flags in the specified modifier. we have to pass int value as a parameter to get access modifier names. Syntax: public static String toString(int mod)Parameters: This method accepts one 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 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 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 Like