Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • Java Arrays
  • Java Strings
  • Java OOPs
  • Java Collection
  • Java 8 Tutorial
  • Java Multithreading
  • Java Exception Handling
  • Java Programs
  • Java Project
  • Java Collections Interview
  • Java Interview Questions
  • Java MCQs
  • Spring
  • Spring MVC
  • Spring Boot
  • Hibernate
Open In App
Next Article:
CompositeName getSuffix() method in Java with Examples
Next article icon

CompositeName get() method in Java with Examples

Last Updated : 27 Mar, 2020
Comments
Improve
Suggest changes
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)

Next Article
CompositeName getSuffix() method in Java with Examples

A

AmanSingh2210
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
  • CompositeName getPrefix() method in Java with Examples
    The getPrefix() method of a javax.naming.CompositeName class is used to get a composite name object whose components consist of a prefix of the components in this composite name.The position at which we need to stop extracting the prefix from this composite name object is passed as a parameter. The
    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
  • 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
  • CompositeName equals() method in Java with Examples
    The equals() method of a javax.naming.CompositeName class is used to compare this CompositeName with the specified object passed as a parameter and checks whether two objects are equal or not. If both objects are equal then the equals() method returns true else false. If passed obj is null or not a
    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 compareTo() method in Java with Examples
    The compareTo() method of a javax.naming.CompositeName class is used to compare this CompositeName with the specified object passed as a parameter. It returns a negative integer, zero, or a positive integer as this CompositeName is less than, equal to, or greater than the given Object as a parameter
    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
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences