El método isEmpty() de una clase javax.naming.CompoundName se utiliza para comprobar si este objeto de nombre compuesto está vacío o no. Se dice que un nombre compuesto está vacío si tiene cero componentes.
Sintaxis:
public boolean isEmpty()
Parámetros: Este método no acepta nada.
Valor devuelto: este método devuelve verdadero si el nombre de este compuesto está vacío, de lo contrario, devuelve falso.
Los siguientes programas ilustran el método CompoundName.isEmpty():
Programa 1:
// Java program to demonstrate // CompoundName.isEmpty() import java.util.Properties; import javax.naming.CompoundName; import javax.naming.InvalidNameException; public class GFG { public static void main(String[] args) throws InvalidNameException { // need properties for CompoundName Properties props = new Properties(); props.put("jndi.syntax.separator", ":"); props.put("jndi.syntax.direction", "left_to_right"); // create compound name object CompoundName CompoundName1 = new CompoundName( "a:b:z:y:x", props); // apply isEmpty() boolean isEmpty = CompoundName1.isEmpty(); // print value System.out.println("This Compound " + "object is empty:" + isEmpty); } }
Producción:
This Compound object is empty:false
Programa 2:
// Java program to demonstrate // CompoundName.isEmpty() method import java.util.Properties; import javax.naming.CompoundName; import javax.naming.InvalidNameException; public class GFG { public static void main(String[] args) throws InvalidNameException { // need properties for CompoundName Properties props = new Properties(); props.put("jndi.syntax.separator", "/"); props.put("jndi.syntax.direction", "left_to_right"); // create compound name object CompoundName CompoundName1 = new CompoundName( "", props); // apply isEmpty() boolean isEmpty = CompoundName1.isEmpty(); // print value System.out.println("This Compound " + "object is empty:" + isEmpty); } }
Producción:
This Compound object is empty:true
Referencias: https://docs.oracle.com/javase/10/docs/api/javax/naming/CompoundName.html#isEmpty()
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA