- 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 Decade Tuple
To search a value in Java Decade Tuple, use the contains() method. It returns a booleans value i.e. TRUE if the element exist, else FALSE.
Let us first see what we need to work with JavaTuples. To work with Decade class in JavaTuples, you need to import the following package
import org.javatuples.Decade;
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 Decade Tuple
Example
import org.javatuples.Decade; public class Demo { public static void main(String[] args) { // Tuple with 10 elements Decade<String, String, String, String, String, String, String, String, String, String> d = Decade.with("AB","CD", "EF","GH", "IJ","KL", "MN","OP", "QR", "ST"); System.out.println("Elements in the Decade Tuple = "+d); boolean res = d.contains("MN"); System.out.println("Does the value exist in the Decade Tuple? = "+res); } }
Output
Elements in the Decade Tuple = [AB, CD, EF, GH, IJ, KL, MN, OP, QR, ST] Does the value exist in the Decade Tuple? = true
- Related Articles
- Search for a value in Java KeyValue Tuple
- Search for a value in Java Octet Tuple
- Search for a value in Java LabelValue Tuple
- Fetch the value from Decade 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 Decade Tuple in Java
- How to create Decade Tuple in Java?
- Create Decade Tuple from a List collection in Java
- Create Decade Tuple from another collection in Java
- Create Decade Tuple from an array in Java
- Create Decade Tuple using with() method in Java
- The setAtX() method of the Decade Tuple in Java
- The contains() method of the Java Decade Tuple

Advertisements