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 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)); } } |
Method Modifiers: public protected private abstract static final synchronized native strictfp
Program 2:
// 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); } } |
Int Value: 3391
References: https://docs.oracle.com/javase/10/docs/api/java/lang/reflect/Modifier.html#methodModifiers()
Attention reader! Don’t stop learning now. Get hold of all the important Java Foundation and Collections concepts with the Fundamentals of Java and Java Collections Course at a student-friendly price and become industry ready.