CompoundName toString() method in Java with Examples Last Updated : 27 Mar, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report The toString() method of a javax.naming.CompoundName class is used to create the string representation of this compound name object, using the syntax of the compound name which was passed through properties. if the component is empty then it is represented by an empty string. The string representation of non-empty compound name object created has the same syntax properties and all the components are separated by that syntax in string representation. Syntax: public String toString() Parameters: This method accepts nothing. Return value: This method returns a non-null string representation of this compound name. Below programs illustrate the CompoundName.toString() method: Program 1: Java // Java program to demonstrate // CompoundName.toString() 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( "1@2@3@4@5@6@7", props); // apply toString() String toString = CompoundName1.toString(); // print value System.out.println("toString: " + toString); } } Output: toString: 1@2@3@4@5@6@7 Program 2: Java // Java program to demonstrate // CompoundName.toString() 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( "c/e/d/v/a/b/z/y/x/f", props); // apply toString() String toString = CompoundName1.toString(); // print value System.out.println("CompoundName:" + toString); } } Output: CompoundName:c/e/d/v/a/b/z/y/x/f References: https://docs.oracle.com/javase/10/docs/api/javax/naming/CompoundName.html#toString() Comment More infoAdvertise with us Next Article CompoundName toString() method in Java with Examples A AmanSingh2210 Follow Improve Article Tags : Java Java-Functions Practice Tags : Java Similar Reads CompositeName toString() method in Java with Examples The toString() method of a javax.naming.CompositeName class is used to create the string representation of this composite name object, using the syntax "/" as a separator of each object. The string representation returned by this composite name consists of enumerating in order each component of this 2 min read CompositeName toString() method in Java with Examples The toString() method of a javax.naming.CompositeName class is used to create the string representation of this composite name object, using the syntax "/" as a separator of each object. The string representation returned by this composite name consists of enumerating in order each component of this 2 min read Date toString() method in Java with Examples The toString() method of Java Date class converts this date object into a String in form "dow mon dd hh:mm:ss zzz yyy". This method overrides toString in class object. Syntax: public String toString() Parameters: The function does not accept any parameter. Return Value: It method returns a string re 2 min read Calendar toString() Method in Java with Examples The toString() method in Calendar class is used to get the string representation of the Calendar object. This method in Calendar Class is just for debug process and not to be used as an operation. Syntax: public String toString() Parameters: The method does not take any parameters. Return Value: The 1 min read Class toString() method in Java with Examples The toString() method of java.lang.Class class is used to convert the instance of this Class to a string representation. This method returns the formed string representation. Syntax: public String toString() Parameter: This method does not accept any parameter. Return Value: This method returns the 1 min read Like