Thursday, June 11, 2026
HomeLanguagesJavaCompositeName getAll() method in Java with Examples

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 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()

RELATED ARTICLES

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6896 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS