Friday, October 24, 2025
HomeLanguagesJavaModifier isProtected(mod) method in Java with Examples

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: This method accepts a integer names as mod represents a set of modifiers.

Return: This method returns true if mod includes the protected modifier; false otherwise.

Below programs illustrate isProtected() method:
Program 1:




// Java program to illustrate isProtected() method
  
import java.lang.reflect.*;
  
public class GFG {
  
    // create a String Field
    protected String string;
  
    public static void main(String[] args)
        throws NoSuchFieldException,
               SecurityException
    {
  
        // get Field class object
        Field field
            = GFG.class
                  .getDeclaredField("string");
  
        // get Modifier Integer value
        int mod = field.getModifiers();
  
        // check Modifier is protected or not
        boolean result = Modifier.isProtected(mod);
  
        System.out.println("Mod integer value "
                           + mod + " is protected : "
                           + result);
    }
}


Output:

Mod integer value 4 is protected : true

Program 2:




// Java program to illustrate isProtected()
  
import java.lang.reflect.*;
  
public class GFG {
  
    // create an int Field
    public int numbers;
  
    public static void main(String[] args)
        throws NoSuchFieldException,
               SecurityException
    {
  
        // get Field class object
        Field field
            = GFG.class.getDeclaredField("numbers");
  
        // get Modifier Integer value
        int mod = field.getModifiers();
  
        // check Modifier is protected or not
        boolean result
            = Modifier.isProtected(mod);
  
        System.out.println("Mod integer value "
                           + mod + " is protected : "
                           + result);
    }
}


Output:

Mod integer value 1 is protected : false

References: https://docs.oracle.com/javase/10/docs/api/java/lang/reflect/Modifier.html#isProtected(int)

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS