Friday, December 12, 2025
HomeLanguagesJavaCompositeName getSuffix() method in Java with Examples

CompositeName getSuffix() method in Java with Examples

The getSuffix() method of a javax.naming.CompositeName class is used to get a composite name object whose components consist of a suffix of the components in this composite name. The position from which we need to start extracting the Suffix from this composite name object is passed as a parameter. The returned composite name object and this composite name object share the same syntax. If we make any changes to this composite name that will not affect the name that is returned and vice versa.

Syntax:

public Name getSuffix(int posn)

Parameters: This method accepts posn which is the 0-based index of the component at which to Start. Must be in the range [0, size()].

Return value: This method returns a composite name consisting of the components at indexes in the range [posn, size()). If posn is equal to size(), an empty composite name is returned.

Exception: This method throws ArrayIndexOutOfBoundsException If posn is outside the specified range.

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




// Java program to demonstrate
// CompositeName.getSuffix()
  
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 CompositeName1
            = new CompositeName(
                "0/1/2/3/4/5/6/7/8/9");
  
        // apply getSuffix()
        CompositeName newCompositeName
            = (CompositeName)
                  CompositeName1.getSuffix(3);
  
        // print value
        System.out.println("New CompositeName Object: "
                           + newCompositeName);
    }
}


Output:

New CompositeName Object: 3/4/5/6/7/8/9

Program 2:




// Java program to demonstrate
// CompositeName.getSuffix() method
  
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 CompositeName1
            = new CompositeName(
                "c/e/d/v/a/b/z/y/x/f");
  
        // apply getSuffix()
        CompositeName newCompositeName
            = (CompositeName)
                  CompositeName1.getSuffix(3);
  
        // print value
        System.out.println(
            "New CompositeName Object: "
            + newCompositeName);
    }
}


Output:

New CompositeName Object: v/a/b/z/y/x/f

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

RELATED ARTICLES

Most Popular

Dominic
32444 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6813 POSTS0 COMMENTS
Nicole Veronica
11951 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12026 POSTS0 COMMENTS
Shaida Kate Naidoo
6945 POSTS0 COMMENTS
Ted Musemwa
7197 POSTS0 COMMENTS
Thapelo Manthata
6891 POSTS0 COMMENTS
Umr Jansen
6881 POSTS0 COMMENTS