Saturday, October 11, 2025
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
32352 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6720 POSTS0 COMMENTS
Nicole Veronica
11885 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6840 POSTS0 COMMENTS
Ted Musemwa
7103 POSTS0 COMMENTS
Thapelo Manthata
6794 POSTS0 COMMENTS
Umr Jansen
6794 POSTS0 COMMENTS