CompositeName get() method in Java with Examples Last Updated : 27 Mar, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report The get() method of a javax.naming.CompositeName class is used to get a component of this composite name object.The position passed as a parameter used to get the component present at that position from the composite name object. Syntax: public String get(int posn) Parameters: This method accepts posn which is 0-based index of the component to retrieve. Must be in the range [0, size()). Return value: This method returns the component at index posn. Exception: This method throws ArrayIndexOutOfBoundsException if posn is outside the specified range. Below programs illustrate the CompositeName.get() method: Program 1: Java // Java program to demonstrate // CompositeName.get() 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( "a/baz/ay/x"); // apply get() String comp1 = CompositeName1.get(0); String comp2 = CompositeName1.get(3); // print value System.out.println(comp1); System.out.println(comp2); } } Output: a x Program 2: Java // Java program to demonstrate // CompositeName.get() 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 get() String pos3 = CompositeName1.get(3); String pos4 = CompositeName1.get(4); // print value System.out.println( "Component at position 3: " + pos3); System.out.println( "Component at position 4: " + pos4); } } Output: Component at position 3: v Component at position 4: a References: https://docs.oracle.com/javase/10/docs/api/javax/naming/CompositeName.html#get(int) Comment More infoAdvertise with us Next Article AtomicInteger get() method in Java with examples A AmanSingh2210 Follow Improve Article Tags : Java Java-Functions Practice Tags : Java Similar Reads 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 not 2 min read 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. 2 min read CompoundName get() method in Java with Examples The get() method of a javax.naming.CompoundName class is used to get a component of this compound name object. The position passed as a parameter used to get the component present at that position from the compound name object. Syntax: public String get(int posn) Parameters: This method accepts posn 2 min read Calendar get() method in Java with Examples The get(int field_value) method of Calendar class is used to return the value of the given calendar field in the parameter. Syntax: public int get(int field) Parameters: The method takes one parameter field_value of integer type and refers to the calendar whose value is needed to be returned. Return 2 min read AtomicInteger get() method in Java with examples The java.util.concurrent.atomic.AtomicInteger.get() is an inbuilt method in java which returns the current value which is of date-type int. Syntax: public final int get() Parameters: The function does not accepts any parameter. Return value: The function returns the current value Program below demon 1 min read Dictionary get() Method in Java with Examples The get() method of Dictionary class is used to retrieve or fetch the value mapped by a particular key mentioned in the parameter. It returns NULL when the dictionary contains no such mapping for the key. Syntax: DICTIONARY.get(Object key_element) Parameters: The method takes one parameter key_eleme 2 min read Like