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:
JavaTuples setAtX() method
Next article icon

JavaTuples with() method

Last Updated : 23 Aug, 2018
Comments
Improve
Suggest changes
Like Article
Like
Report
The with() method in org.javatuples is used to instantiate a tuple in a semantically elegant way, with the values given as parameters. This method can be used for any tuple class object of the javatuples library. This method is a static function in each javatuple class and it returns the tuple class object of the called class, with the values initialized by the corresponding values in the arguments. Syntax:
public static <A, B, ..> <em>TupleClass<A, B, ..> with(A a, B b, ..)
Parameters: This method takes n values as parameters where:
  • n- represents the number of values based on the TupleClass (Unit, Pair, etc) used.
  • A a- represents the type for 1st value in A and its corresponding value in a.
  • B b- represents the type for 2nd value in B and its corresponding value in b.
  • . . and so on.
Return Value: This method returns the object of TupleClass, which calls the method, with the values passed as the parameters. Exceptions: This method throws a RuntimeException in the following cases:
  • When the values passed do not match their expected types in TupleClass
  • When the number of values passed are lesser than expected in TupleClass
  • When the number of values passed are more than expected in TupleClass
Below programs illustrate the various ways to use with() methods: Program 1: When the with() method is used correctly, here with Unit class: Java
// Below is a Java program to create // a Unit tuple from with() method  import java.util.*; import org.javatuples.Unit;  class GfG {     public static void main(String[] args)     {         // Using with() method to instantiate unit object         Unit<String> unit = Unit.with("GeeksforGeeks");          System.out.println(unit);     } } 
Output:
[GeeksforGeeks]
Program 2: When the values passed do not match their expected types: Java
// Below is a Java program to create // a Unit tuple from with() method  import java.util.*; import org.javatuples.Quartet;  class GfG {     public static void main(String[] args)     {         // Using with() method to instantiate unit object         Quartet<Integer, String, String, Double> quartet             = Quartet.with(Double.valueOf(1),                            "GeeksforGeeks",                            "A computer portal",                            Double.valueOf(20.18));          System.out.println(quartet);     } } 
Output:
Exception in thread "main" java.lang.RuntimeException:   Uncompilable source code - incompatible types: inference variable A has incompatible bounds      equality constraints: java.lang.Integer      lower bounds: java.lang.Double      at MainClass.GfG.main]
Program 3: When the number of values passed are lesser than expected: Java
// Below is a Java program to create // a Unit tuple from with() method  import java.util.*; import org.javatuples.Quartet;  class GfG {     public static void main(String[] args)     {         // Using with() method to instantiate unit object         Quartet<Integer, String, String, Double> quartet             = Quartet.with(Integer.valueOf(1),                            "GeeksforGeeks",                            "A computer portal");          System.out.println(quartet);     } } 
Output:
Exception in thread "main" java.lang.RuntimeException:   Uncompilable source code - Erroneous sym type: org.javatuples.Quartet.with      at MainClass.GfG.main
Program 4: When the number of values passed are more than expected: Java
// Below is a Java program to create // a Unit tuple from with() method  import java.util.*; import org.javatuples.Quartet;  class GfG {     public static void main(String[] args)     {         // Using with() method to instantiate unit object         Quartet<Integer, String, String, Double> quartet             = Quartet.with(Integer.valueOf(1),                            "GeeksforGeeks",                            "A computer portal",                            Double.valueOf(20.18),                            Integer.valueOf(1));          System.out.println(quartet);     } } 
Output:
Exception in thread "main" java.lang.RuntimeException:   Uncompilable source code - Erroneous sym type: org.javatuples.Quartet.with      at MainClass.GfG.main
Note: Similarly, it can be used with any other JavaTuple Class.

Next Article
JavaTuples setAtX() method

R

RishabhPrabhu
Improve
Article Tags :
  • Java
  • Java-Functions
  • JavaTuples
Practice Tags :
  • Java

Similar Reads

  • JavaTuple toList() method
    The toList() method in org.javatuples is used to convert the values in TupleClass into a List. This List is of Object type, so that it can take all values. It is inherited from the JavaTuple class. This method can be used to any tuple class object of javatuples library. It returns List formed with t
    2 min read
  • JavaTuples setAtX() method
    The setAtX() method in org.javatuples is used to change the value in the existing tuple, at the index X. Since JavaTuples are immutable, hence changing a value in the existing tuple results in a new tuple with the modified value at the index X. It returns the tuple class object of the called class w
    2 min read
  • JavaTuples setKey() method
    The setKey() method in org.javatuples is used to set the key of the KeyValue Class object. This method can be used with only KeyValue class object of javatuples library. It returns another KeyValueClassObject with the Key as the element passed as the parameter, and the value from the previous KeyVal
    2 min read
  • JavaTuples add() method
    The add() method in org.javatuples is used to add a value to the existing tuple. Since JavaTuples are immutable, hence adding a value to the existing tuple results in a new tuple with one more value. For example, adding a value to Unit tuple results in the formation of a Pair tuple. This method can
    3 min read
  • JavaTuples toString() method
    The toString() method in org.javatuples is used to convert the values in TupleClass into a String. This method is inherited from the JavaTuple class. This method can be used to any tuple class object of javatuples library. It returns a String value formed with the values in the TupleClassObject. Met
    2 min read
  • JavaTuples setLabel() method
    The setLabel() method in org.javatuples is used to set the label of the LabelValue Class object. This method can be used with only LabelValue class object of javatuples library. It returns another LabelValueClassObject with the Label as the element passed as the parameter, and the value from the pre
    2 min read
  • JavaTuples setValue() method
    The setValue() method in org.javatuples is used to set the value in the LabelValueClassObject or KeyValueClassObject. This method can be used with only LabelValue class or KeyValue class of javatuples library. It returns another ClassObject with the value as the element passed as the parameter, and
    2 min read
  • JavaTuple toArray() method
    The toArray() method in org.javatuples is used to convert the values in TupleClass into an array of Object type. This method is inherited from the JavaTuple class. This method can be used to any tuple class object of javatuples library. It returns an array of Object type formed with the values in th
    2 min read
  • JavaTuples equal() method
    The equals() method in org.javatuples is used to check whether a TupleClass is equal to the TupleClass given as parameter. This method can be used to any tuple class object of javatuples library. It returns a boolean value that is true or false based on the equivalence of that TupleClass with existi
    2 min read
  • JavaTuples addAtX() method
    The addAtX() method in org.javatuples is used to add a value to the existing tuple, at an index X. Since JavaTuples are immutable, hence adding a value to the existing tuple results in a new tuple with one more value. For example, adding a value to Unit tuple results in the formation of a Pair tuple
    3 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