Open In App
Related Articles

Field getModifiers() method in Java with Examples

Improve Article
Improve
Save Article
Save
Like Article
Like

The getModifiers () method of java.lang.reflect.Field used to return the modifiers used for the field object as time of declaration, as an integer. The Modifier class should be used to decode the modifiers. Syntax:

public int getModifiers()

Parameters: This method accepts nothing. Return: This method returns the Java language modifiers for the underlying member. Below programs illustrate getModifiers () method: Program 1: 

Java




// Java program to illustrate
// getModifiers () method
 
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
 
public class GFG {
 
    // initialize field
    private static int number;
 
    public static void main(String[] args)
        throws NoSuchFieldException
    {
        // get Field object
        Field field
            = GFG.class
                  .getDeclaredField("number");
 
        // apply getModifiers() method
        int modifiers
            = field.getModifiers();
 
        // print the results
        System.out.println(
            Modifier
                .toString(modifiers));
    }
}


Output:

private static

Program 2: 

Java




// Java program to illustrate
// getModifiers () method
 
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
 
public class GFG {
 
    // initialize field
    final static String value
        = "Geeks";
 
    public static void main(String[] args)
        throws NoSuchFieldException
    {
 
        // get Field object
        Field field
            = GFG.class
                  .getDeclaredField("value");
 
        // apply getModifiers() method
        int modifiers
            = field.getModifiers();
 
        // print the results
        System.out.println(
            Modifier
                .toString(modifiers));
    }
}


Output:

static final

References: https://docs.oracle.com/javase/8/docs/api/java/lang/reflect/Field.html#getModifiers–


Feeling lost in the vast world of Backend Development? It's time for a change! Join our Java Backend Development - Live Course and embark on an exciting journey to master backend development efficiently and on schedule.
What We Offer:
  • Comprehensive Course
  • Expert Guidance for Efficient Learning
  • Hands-on Experience with Real-world Projects
  • Proven Track Record with 100,000+ Successful Geeks

Last Updated : 30 May, 2022
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials