Create Triplet Tuple from Array in Java


To create a Triplet tuple from Array in Java, you need to use the fromArray() method.

Let us first see what we need to work with JavaTuples. To work with Triplet class in JavaTuples, you need to import the following package −

import org.javatuples.Triplet;

NoteSteps to download and run JavaTuples program If you are using Eclipse IDE to run Triplet Class in JavaTuples, then Right Click Project → Properties → Java Build Path → Add External Jars and upload the downloaded JavaTuples jar file.

The following is an example −

Example

import java.util.*;
import org.javatuples.Triplet;
public class Demo {
   public static void main(String[] args) {
      String[] strArray = {
         "Movies",
         "Web Series",
         "TV Shows"
      };
      Triplet < String, String, String > t = Triplet.fromArray(strArray);
      System.out.println(t);
   }
}

Output

[Movies, Web Series, TV Shows]

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 30-Jul-2019

85 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements