CompoundName startsWith() method in Java with Examples Last Updated : 27 Mar, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report The startsWith() method of a javax.naming.CompoundName class is used to check whether compound name which is passed as a parameter is a prefix of this compound name or not. A compound name 'X' is a prefix of this compound name if this compound name object ends with 'X'. If X is null or not a compound name object, false is returned. Syntax: public boolean startsWith(Name n) Parameters: This method accepts n which is the possibly null compound name to check. Return value: This method returns true if n is a CompoundName and is a prefix of this compound name, false otherwise. Below programs illustrate the CompoundName.startsWith() method: Program 1: Java // Java program to demonstrate // CompoundName.startsWith() 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:4:6", props); CompoundName CompoundName2 = new CompoundName( "2:4:6", props); // apply startsWith() boolean Flag = CompoundName1 .startsWith(CompoundName2); // print value if (Flag) System.out.println( "CompoundName1 starts with " + " CompoundName2"); else System.out.println( "CompoundName1 not starts with " + " CompoundName2"); } } Output: CompoundName1 not starts with CompoundName2 Program 2: Java // Java program to demonstrate // CompoundName.startsWith() 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); CompoundName CompoundName2 = new CompoundName( "c/e/d", props); // apply startsWith() boolean Flag = CompoundName1 .startsWith(CompoundName2); // print value if (Flag) System.out.println( "CompoundName1 starts with " + " CompoundName2"); else System.out.println( "CompoundName1 not starts with " + " CompoundName2"); } } Output: CompoundName1 starts with CompoundName2 References: https://docs.oracle.com/javase/10/docs/api/javax/naming/CompoundName.html#startsWith(javax.naming.Name) Comment More infoAdvertise with us Next Article CompoundName startsWith() method in Java with Examples A AmanSingh2210 Follow Improve Article Tags : Java Java-Functions Practice Tags : Java Similar Reads CompositeName startsWith() method in Java with Examples The startsWith() method of a javax.naming.CompositeName class is used to check whether composite name which is passed as a parameter is a prefix of this composite name or not. A composite name 'X' is a prefix of this composite name if this composite name object ends with 'X'. If X is null or not a c 2 min read 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 CompoundName get() method in Java with Examples The get() method of a javax.naming.CompoundName class is used to get a component of this compound name object. The position passed as a parameter used to get the component present at that position from the compound name object. Syntax: public String get(int posn) Parameters: This method accepts posn 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 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 Like