Open In App

CompositeName getAll() method in Java with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

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 nothing.

Return value: This method returns a non-null enumeration of the components of this composite name. Each element of the enumeration is of class String.

Below programs illustrate the CompositeName.getAll() method:
Program 1:




// Java program to demonstrate
// CompositeName.getAll()
  
import java.util.Enumeration;
import java.util.Properties;
import javax.naming.CompositeName;
import javax.naming.InvalidNameException;
  
public class GFG {
    public static void main(String[] args)
        throws InvalidNameException
    {
  
        // create composite name object
        CompositeName CompositeName
            = new CompositeName("a/b/z/y/x");
  
        // apply getAll()
        Enumeration<String> components
            = CompositeName.getAll();
  
        // print value
        while (components.hasMoreElements()) {
            System.out.println("Component: "
                               + components.nextElement());
        }
    }
}


Program 2:




// Java program to demonstrate
// CompositeName.getAll() method
  
import java.util.Enumeration;
import java.util.Properties;
import javax.naming.CompositeName;
import javax.naming.InvalidNameException;
  
public class GFG {
    public static void main(String[] args)
        throws InvalidNameException
    {
  
        // create composite name object
        CompositeName CompositeName
            = new CompositeName("ca/ea/dz/y/x/f");
  
        // apply getAll()
        Enumeration<String> components
            = CompositeName.getAll();
  
        // print value
        int i = 0;
        while (components.hasMoreElements()) {
            System.out.println("position "
                               + i + ": "
                               + components.nextElement());
            i++;
        }
    }
}


References: https://docs.oracle.com/javase/10/docs/api/javax/naming/CompositeName.html#getAll()



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