VOOZH about

URL: https://www.geeksforgeeks.org/java/java-tuples-getvalue-method/

⇱ JavaTuples getValue() method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

JavaTuples getValue() method

Last Updated : 11 Jul, 2025
The getValue() method in org.javatuples is used to fetch the value of the TupleClassObject from the index passed as the parameter. This method can be used to any tuple class object of javatuples library. It returns a Object value which is the element present at the index, passed as parameter, of the TupleClassObject. Since the returned Value is of Object type, hence using getValue() loses the type-safety. Method Declaration:
public final Object getValue(int pos)
Syntax:
Object val = TupleClassObject.getValue(int pos)
Here TupleClassObject represents the JavaTuple Class object used like Unit, Quintet, Decade, etc. Parameters: This method takes pos as parameter where:
  • pos- is the index at which the value of the TupleClassObject is to be known.
  • TupleClassObject- represents the JavaTuple Class object used like Unit, Quintet, Decade, etc.
Return Value: This method returns a Object value which is the element present at the index, passed as parameter, of the TupleClassObject. Below programs illustrate the various ways to use getValue() method: Program 1: Using getValue() with Unit class: Output:
Value at 0 = GeeksforGeeks
Program 2: Using getValue() with Quartet class:
Output:
Value at 2 = for geeks
Note: Similarly, it can be used with any other JavaTuple Class.
Comment
Article Tags: