- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Iterate through Java Pair Tuple
The iteration through Pair in JavaTuples is the same as you may have seen in Java Arrays collection.
Let us first see what we need to work with JavaTuples. To work with Pair class in JavaTuples, you need to import the following package −
import org.javatuples.Pair;
Note − Steps to download and run JavaTuples program If you are using Eclipse IDE to run Pair 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 org.javatuples.Pair; public class Demo { public static void main(String[] args) { Pair < String, String > p = Pair.with("Mobile", "Desktop"); for (Object ob: p) System.out.println(ob); } }
Output
Mobile Desktop
- Related Articles
- Iterate through Java Unit Tuple
- Iterate through Decade Tuple in Java
- Iterate through Ennead Tuple in Java
- Iterate through Octet Tuple in Java
- Iterate through LabelValue Tuple in Java
- Iterate through KeyValue Tuple in Java
- How to iterate through a tuple in Python?
- Iterate through ArrayList in Java
- Create Pair Tuple in Java
- Iterate through elements of Java LinkedHashSet
- How to iterate through Java List?
- Iterate through elements of HashSet in Java
- Iterate through elements of TreeSet in Java
- Iterate through Quintet class in Java Tuples
- Iterate through the values of Java LinkedHashMap in Java

Advertisements