- 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 Octet Tuple in Java
You can easily iterate through Octet Tuple using a for the loop. Let us first see what we need to work with JavaTuples. To work with Octet class in JavaTuples, you need to import the following package −
import org.javatuples.Octet;
Note − Download JavaTuples Jar library to run JavaTuples program. If you are using Eclipse IDE, then Right Click Project -> Properties -> Java Build Path -> Add External Jars and upload the downloaded JavaTuples jar file. Refer the below guide for all the steps to run JavaTuples −
Steps − How to run JavaTuples program in Eclipse
The following is an example to iterate through Octet Tuple in Java −
Example
import org.javatuples.Octet; public class Demo { public static void main(String[] args) { Octet<String, String, String, String, String, String, String, String> oc = Octet.with( "mobile", "desktop","laptop", "tablet","monitor", "LCD","LED", "OLED"); System.out.println("Elements in the Octet Tuple = "); for (Object ele : oc) System.out.println(ele); } }
Output
Elements in the Octet Tuple = mobile desktop laptop tablet monitor LCD LED OLED
Above, we have first created an Octet Tuple and added elements −
Octet<String, String, String, String, String, String, String, String> oc = Octet.with("mobile", "desktop","laptop", "tablet","monitor", "LCD","LED", "OLED");
Now, let us iterate −
for (Object ele : oc) System.out.println(ele);
- Related Articles
- Iterate through Java Unit Tuple
- Iterate through Java Pair Tuple
- Iterate through Decade Tuple in Java
- Iterate through Ennead Tuple in Java
- Iterate through LabelValue Tuple in Java
- Iterate through KeyValue Tuple in Java
- How to create Octet Tuple in Java?
- How to iterate through a tuple in Python?
- Create Octet Tuple from another collection in Java
- Search for a value in Java Octet Tuple
- Create Octet Tuple using with() method in Java
- Create Octet Tuple from an array in Java
- The setAtX() method of the Octet Tuple in Java
- Create Octet Tuple from a List collection in Java
- Fetch the value from an Octet Tuple in Java

Advertisements