- 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
Search for a value in Java Octet Tuple
To search for a value in Java Octet Tuple, you need to use the contains() method. The method returns a Boolean value stating whether the element set as a parameter exists in the values set in Octet Tuple or not. 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 search for a value in Java Octet tuple −
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( "laptop", "desktop","mobile", "tablet","monitor", "LCD","LED", "OLED"); boolean res = oc.contains("tablet"); System.out.println("Does the value exist in the Octet Tuple = "+res); } }
Output
Does the value exist in the Octet Tuple = true
Above, we have set the elements in the Octet Tuple −
Octet<String, String, String, String, String, String, String, String> oc = Octet.with("laptop", "desktop","mobile", "tablet","monitor", "LCD","LED", "OLED");
Then, we have used the contains() method to search for an element −
boolean res = oc.contains("tablet");
- Related Articles
- Search for a value in Java Decade Tuple
- Search for a value in Java KeyValue Tuple
- Search for a value in Java LabelValue Tuple
- How to add a value in Octet Tuple in Java
- Fetch the value from an Octet Tuple in Java
- How to search for a value in Java Ennead Tuple
- Search a value in Java Unit Tuple
- Search a value in Java Pair Tuple
- Iterate through Octet Tuple in Java
- How to create Octet Tuple in Java?
- Create Octet Tuple from a List collection in Java
- Create Octet Tuple from another collection in Java
- 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
