CompoundName getAll() method in Java with Examples Last Updated : 27 Mar, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report The getAll() method of a javax.naming.CompoundName class is used to return all the component of this compound object as enumeration of string. The update effects applied to this compound name on this enumeration is undefined. Syntax: public Enumeration getAll() Parameters: This method accepts nothing. Return value: This method returns a non-null enumeration of the components of this compound name. Each element of the enumeration is of class String. Below programs illustrate the CompoundName.getAll() method: Program 1: Java // Java program to demonstrate // CompoundName.getAll() import java.util.Enumeration; 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 compoundName = new CompoundName( "a:b:z:y:x", props); // apply getAll() Enumeration<String> components = compoundName.getAll(); // print value int i = 0; while (components.hasMoreElements()) { System.out.println( "position " + i + " :" + components.nextElement()); i++; } } } Output: position 0 :a position 1 :b position 2 :z position 3 :y position 4 :x Program 2: Java // Java program to demonstrate // CompoundName.getAll() method import java.util.Enumeration; 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 compoundName = new CompoundName( "c/e/d/v/a/b/z/y/x/f", props); // apply getAll() Enumeration<String> components = compoundName.getAll(); // print value int i = 0; while (components.hasMoreElements()) { System.out.println( "position " + i + " :" + components.nextElement()); i++; } } } Output: position 0 :c position 1 :e position 2 :d position 3 :v position 4 :a position 5 :b position 6 :z position 7 :y position 8 :x position 9 :f References: https://docs.oracle.com/javase/10/docs/api/javax/naming/CompoundName.html#getAll() Comment More infoAdvertise with us Next Article CompoundName get() method in Java with Examples A AmanSingh2210 Follow Improve Article Tags : Java Java-Functions Practice Tags : Java Similar Reads 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 getAll() method in Java with Examples The getAll() method of a javax.naming.CompositeName class is used to return all the component of this composite object as enumeration of string. The update effects applied to this composite name on this enumeration is undefined. Syntax: public Enumeration getAll() Parameters: This method accepts not 2 min read CompoundName getSuffix() method in Java with Examples The getSuffix() method of a javax.naming.CompoundName class is used to get a compound name object whose components consist of a suffix of the components in this compound name. The position from which we need to start extracting the Suffix from this compound name object is passed as a parameter. The 2 min read CompoundName getPrefix() method in Java with Examples The getPrefix() method of a javax.naming.CompoundName class is used to get a compound name object whose components consist of a prefix of the components in this compound name. The position at which we need to stop extracting the prefix from this compound name object is passed as a parameter. The ret 2 min read CompositeName get() method in Java with Examples The get() method of a javax.naming.CompositeName class is used to get a component of this composite name object.The position passed as a parameter used to get the component present at that position from the composite name object. Syntax: public String get(int posn) Parameters: This method accepts po 2 min read CompoundName addAll() method in Java with Examples The addAll() method of a javax.naming.CompoundName class is used to add all the components of a different compound name object to this CompoundName object. There are two different addAll() methods. 1. addAll(int, Name): This method is used to add All the components of a different Compound name objec 3 min read Like