VOOZH about

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

⇱ JavaTuples getKey() method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

JavaTuples getKey() method

Last Updated : 11 Jul, 2025
The getKey() method in org.javatuples is used to fetch the key from the TupleClassObject from the KeyValue Class. This method can be used with only KeyValue class object of javatuples library. It returns a Key which is the element present at the index 0 of the KeyValueClassObject. The returned Key is ensures the type-safety. Method Declaration:
public A getKey()
Syntax:
KeyValue<A, B> KeyValueClassObject = KeyValue.with(A a, B b);
A val = KeyValueClassObject.getKey()
Return Value: This method returns a Key which is the element present at the index 0 of the KeyValueClassObject. Below programs illustrate the various ways to use getKey() method: Example 1: Output:
1
Example 2:
Output:
GeeksforGeeks
Comment
Article Tags: