VOOZH about

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

⇱ JavaTuples setKey() method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

JavaTuples setKey() method

Last Updated : 11 Jul, 2025
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 KeyValueClassObject. Method Declaration:
public <X> KeyValue<X, B> setKey(X key)
Syntax:
KeyValue<X, B> KeyValueClassObject = KeyValue.setKey(X key)
Return Value: This method returns another KeyValueClassObject with the Key as the element passed as the parameter, and the value from the previous KeyValueClassObject. Below programs illustrate the various ways to use setKey() method: Example 1: Output:
[GeeksforGeeks, A computer science portal]
Example 2:
Output:
[One, 1]
Comment
Article Tags: