Open In App

CompoundName getAll() method in Java with Examples

Improve
Improve
Like Article
Like
Save
Share
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 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 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()



Last Updated : 27 Mar, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads