VOOZH about

URL: https://www.geeksforgeeks.org/java/java-tuple-toarray-method/

⇱ JavaTuple toArray() method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

JavaTuple toArray() method

Last Updated : 11 Jul, 2025
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 the TupleClassObject. Method Declaration:
public final Object[] toArray()
Syntax:
Object obj[] = TupleClassObject.toArray()
Here TupleClassObject represents the JavaTuple Class object used like Unit, Quintet, Decade, etc. Return Value: This method returns an array of Object type formed with the values in the TupleClassObject. Below are programs that will illustrate the various ways to use toArray() method: Program 1: Using toArray() with Unit class: Output:
GeeksforGeeks
Program 2: Using toArray() with Quartet class:
Output:
1
GeeksforGeeks
A computer portal
20.18
Note: Similarly, it can be used with any other JavaTuple Class.
Comment
Article Tags: