CompoundName 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.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 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 CompoundName.get() method: Program 1: Java // Java program to demonstrate // CompoundName.get() import java.util.Properties; import javax.naming.CompoundName; import javax.naming.InvalidNameException; public class GFG { public static void main(String[] args) throws InvalidNameException { // need properties for CompoundName Properties props = new Properties(); props.put("jndi.syntax.separator", ":"); props.put("jndi.syntax.direction", "left_to_right"); // create compound name object CompoundName CompoundName1 = new CompoundName("a:b:z:y:x", props); // apply get() String pos1 = CompoundName1.get(0); String pos2 = CompoundName1.get(1); // print value System.out.println(pos1); System.out.println(pos2); } } Output: a b Program 2: Java // Java program to demonstrate // CompoundName.get() method import java.util.Properties; import javax.naming.CompoundName; import javax.naming.InvalidNameException; public class GFG { public static void main(String[] args) throws InvalidNameException { // need properties for CompoundName Properties props = new Properties(); props.put("jndi.syntax.separator", "/"); props.put("jndi.syntax.direction", "left_to_right"); // create compound name object CompoundName CompoundName1 = new CompoundName( "c/e/d/v/a/b/z/y/x/f", props); // apply get() String pos3 = CompoundName1.get(3); String pos4 = CompoundName1.get(4); // print value System.out.println("position 3:" + pos3); System.out.println("position 4:" + pos4); } } Output: position 3:v position 4:a References: https://docs.oracle.com/javase/10/docs/api/javax/naming/CompoundName.html#get(int) Comment More infoAdvertise with us Next Article CompoundName get() method in Java with Examples A AmanSingh2210 Follow Improve Article Tags : Java Java-Functions Practice Tags : Java Similar Reads CompoundName getAll() method in Java with Examples The getAll() method of a javax.naming.CompoundName class is used to return all the component of this compound object as enumeration of string. The update effects applied to this compound name on this enumeration is undefined. Syntax: public Enumeration getAll() Parameters: This method accepts nothin 2 min read CompoundName getSuffix() method in Java with Examples The getSuffix() method of a javax.naming.CompoundName class is used to get a compound name object whose components consist of a suffix of the components in this compound name. The position from which we need to start extracting the Suffix from this compound name object is passed as a parameter. The 2 min read CompositeName get() method in Java with Examples 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 po 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 ChronoZonedDateTime get() method in Java with Examples The get() method of ChronoZonedDateTime interface in Java is used to get the value of the specified field passed as input from this ChronoZonedDateTime as an integer.This method queries this ChronoZonedDateTime for the value of the field and the returned value will always be within the valid range o 2 min read Like