CompoundName isEmpty() method in Java with Examples Last Updated : 27 Mar, 2020 Comments Improve Suggest changes Like Article Like Report The isEmpty() method of a javax.naming.CompoundName class is used to check this compound name object is empty or not. A compound name is said to be empty if it has zero components. Syntax: public boolean isEmpty() Parameters: This method accepts nothing. Return value: This method returns true if this compound name is empty, false otherwise. Below programs illustrate the CompoundName.isEmpty() method: Program 1: Java // 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); } } Output: This Compound object is empty:false Program 2: Java // 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); } } Output: This Compound object is empty:true References: https://docs.oracle.com/javase/10/docs/api/javax/naming/CompoundName.html#isEmpty() Comment More infoAdvertise with us Next Article CompoundName isEmpty() method in Java with Examples A AmanSingh2210 Follow Improve Article Tags : Java Java-Functions Practice Tags : Java Similar Reads CompositeName isEmpty() method in Java with Examples The isEmpty() method of a javax.naming.CompositeName class is used to check this composite name object is empty or not. A composite name is said to be empty if it has zero components. Syntax: public boolean isEmpty() Parameters: This method accepts nothing. Return value: This method returns true if 1 min read Collection isEmpty() method in Java with Examples The isEmpty() of java.util.Collection interface is used to check if the Collection upon which it is called is empty or not. This method does return a boolean value indicating whether the collection is empty or not. Here's the correct information for the isEmpty() method: Syntax:boolean isEmpty()Para 3 min read AbstractMap isEmpty() Method in Java with Examples The AbstractMap.isEmpty() method of AbstractMap class is used to check for the emptiness of the map. The method returns True if no key-value pair or mapping is present in the map else False. Syntax: AbstractMap.isEmpty() Parameters: The method does not take any parameters. Return Value: The method r 2 min read Map isEmpty() Method in Java with Examples This method is used to check if a map is having any entry for key and value pairs. If no mapping exists, then this returns true. Syntax: boolean isEmpty() Parameters: This method has no argument. Returns: This method returns True if the map does not contain any key-value mapping. Below programs show 1 min read Set isEmpty() method in Java with Examples The java.util.Set.isEmpty() method is used to check if a Set is empty or not. It returns True if the Set is empty otherwise it returns False. Syntax: boolean isEmpty() Parameters: This method does not take any parameter Return Value: The method returns True if the set is empty else returns False. Be 1 min read Like