Open In App

Field getModifiers() method in Java with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

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–



Last Updated : 30 May, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads