CompositeName toString() method in Java with Examples Last Updated : 27 Mar, 2020 Comments Improve Suggest changes Like Article Like Report 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 composite name and separating each component by a forward slash "/" character. An empty component of this composite name object is represented by an empty string. Syntax: public String toString() Parameters: This method accepts nothing. Return value: This method returns a non-null string representation of this composite name. Below programs illustrate the CompositeName.toString() method: Program 1: Java // Java program to demonstrate // CompositeName.toString() import java.util.Properties; import javax.naming.CompositeName; import javax.naming.InvalidNameException; public class GFG { public static void main(String[] args) throws InvalidNameException { // create a composite name object CompositeName CompositeName1 = new CompositeName( "a/n/cc/aa/@@/##/7"); // apply toString() String toString = CompositeName1.toString(); // print value System.out.println("toString: " + toString); } } Output: toString: a/n/cc/aa/@@/##/7 Program 2: Java // Java program to demonstrate // CompositeName.toString() method import java.util.Properties; import javax.naming.CompositeName; import javax.naming.InvalidNameException; public class GFG { public static void main(String[] args) throws InvalidNameException { // create a composite name object CompositeName CompositeName1 = new CompositeName("cc/ee/dd/vv/a/b/z/y/x/f"); // apply toString() String toString = CompositeName1.toString(); // print value System.out.println("CompositeName:" + toString); } } Output: CompositeName:cc/ee/dd/vv/a/b/z/y/x/f References: https://docs.oracle.com/javase/10/docs/api/javax/naming/CompositeName.html#toString() Comment More infoAdvertise with us Next Article Calendar toString() Method in Java with Examples K kartik Follow Improve Article Tags : Java Java-Functions Practice Tags : Java Similar Reads CompoundName toString() method in Java with Examples 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 representati 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 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 Byte toString() method in Java with examples The toString() method of Byte class is a built in method in Java which is used to return a String value. public String toString() Syntax: ByteObject.toString() Return Value: It returns a String object, the value of which is equal to the value of the ByteObject. Below is the implementation of toStrin 2 min read Byte toString() method in Java with examples The toString() method of Byte class is a built in method in Java which is used to return a String value. public String toString() Syntax: ByteObject.toString() Return Value: It returns a String object, the value of which is equal to the value of the ByteObject. Below is the implementation of toStrin 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 Like