Thursday, March 12, 2026
HomeLanguagesJavaJavaTuple toList() method

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 the values in the TupleClassObject.

Method Declaration:

public final List<Object> toList()

Syntax:

List<Object> list = TupleClassObject.toList()

Here TupleClassObject represents the JavaTuple Class object used like Unit, Quintet, Decade, etc.

Return Value: This method returns a List formed with the values in the TupleClassObject.

Below are programs that will illustrate the various ways to use toList() method:

Program 1: Using toList() with Unit class:




// Below is a Java program to use toList() method
  
import java.util.*;
import org.javatuples.Unit;
  
class GfG {
    public static void main(String[] args)
    {
        // Creating an Unit with one value
        Unit<String> unit = Unit.with("Lazyroar");
  
        // Using toList() method with Object type
        List<Object> objList = unit.toList();
  
        // Printing the list
        System.out.println(objList);
    }
}


Output:

[Lazyroar]

Program 2: Using toList() with Quartet class:




// Below is a Java program to use toList() method
  
import java.util.*;
import org.javatuples.Quartet;
  
class GfG {
    public static void main(String[] args)
    {
        // Creating a quartet
        Quartet<Integer, String, String, Double> quartet
            = Quartet.with(Integer.valueOf(1),
                           "Lazyroar",
                           "A computer portal",
                           Double.valueOf(20.18));
  
        // Using toList() method with Object type
        List<Object> objList = quartet.toList();
  
        // Printing the list
        System.out.println(objList);
    }
}


Output:

[, Lazyroar, A computer portal, 20.18]

Note: Similarly, it can be used with any other JavaTuple Class.

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32506 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6882 POSTS0 COMMENTS
Nicole Veronica
12005 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12099 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6967 POSTS0 COMMENTS
Umr Jansen
6956 POSTS0 COMMENTS