El método isProtected(mod) de java.lang.reflect.Modifier se utiliza para comprobar si el argumento entero incluye el modificador protected o no. Si este parámetro entero representa un modificador de tipo protegido, el método devuelve verdadero, de lo contrario, es falso.
Sintaxis:
public static boolean isProtected(int mod)
Parámetros: este método acepta nombres enteros ya que mod representa un conjunto de modificadores.
Return : este método devuelve verdadero si mod incluye el modificador protected; falso en caso contrario.
Los siguientes programas ilustran el método isProtected():
Programa 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); } }
Mod integer value 4 is protected : true
Programa 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); } }
Mod integer value 1 is protected : false
Referencias: https://docs.oracle.com/javase/10/docs/api/java/lang/reflect/Modifier.html#isProtected(int)
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA