Sunday, November 23, 2025
HomeLanguagesJavaJavaTuples containsAll() method

JavaTuples containsAll() method

The containsAll() method in org.javatuples is used to check whether a collection of values is present in the TupleClass, given as parameters. This method can be used for any tuple class object of the javatuples library. It returns a boolean value that is true or false based on the presence of that collection of values in the TupleClass.

Method Declaration:

public final boolean containsAll(Object... value)

Syntax:

boolean result = TupleClassObject.containsAll(X value1, X value2, ...)
                    OR
boolean result = TupleClassObject.containsAll(X[] values)

Parameters: This method takes value or values as parameter where:

  • X– represents the datatype of values in the parameter.
  • TupleClassObject– represents the JavaTuple Class object used like Unit, Quintet, Decade, etc.

Return Value: This method returns true if the parameter value are present in the tuple. Else it returns false

Below programs illustrate the various ways to use containsAll() method:

Program 1: Using containsAll() with Unit class:




// Below is a Java program to use containsAll() method
  
import java.util.*;
import org.javatuples.Unit;
  
class GfG {
    public static void main(String[] args)
    {
        // Creating an Unit with one value
        Unit<String> unit = Unit.with("Lazyroar");
  
        // Using containsAll() method
  
        boolean res;
  
        // for True result
        String[] check = { "Lazyroar" };
        res = unit.containsAll(check);
  
        System.out.println("Is " + Arrays.toString(check) + " present : " + res);
  
        // for False result
        String[] check1 = { "Geeks", "for", "Geeks" };
        res = unit.containsAll(check1);
  
        System.out.println("Is " + Arrays.toString(check1) + " present : " + res);
    }
}


Output:

Is [Lazyroar] present : true
Is [Geeks, for, Geeks] present : false

Program 2: Using containsAll() with Decade class:




// Below is a Java program to use containsAll() method
  
import java.util.*;
import org.javatuples.Decade;
  
class GfG {
    public static void main(String[] args)
    {
        // Creating a Decade with 10 value
        Decade<String, String, String, String, String,
               String, String, String, String, String>
            decade = Decade.with("Geeks",
                                 "for",
                                 "Geeks",
                                 "A",
                                 "Computer",
                                 "Science",
                                 "Portal",
                                 "for",
                                 "Geeks",
                                 "RishabhPrabhu");
  
        // Using containsAll() method
        boolean res;
  
        // for true result
        String[] check = { "Geeks", "for", "Geeks" };
        res = decade.containsAll(check);
  
        System.out.println("Is " + Arrays.toString(check) + " present : " + res);
  
        // for False result
        String[] check1 = { "Geeks", "not", "for", "Geeks" };
        res = decade.containsAll(check1);
  
        System.out.println("Is " + Arrays.toString(check1) + " present : " + res);
    }
}


Output:

Is [Geeks, for, Geeks] present : true
Is [Geeks, not, for, Geeks] present : false

Note: Similarly, it can be used with any other JavaTuple Class.

Last Updated :
27 Aug, 2018
Like Article
Save Article
Similar Reads
Related Tutorials
RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6785 POSTS0 COMMENTS
Nicole Veronica
11932 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12000 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6864 POSTS0 COMMENTS
Umr Jansen
6852 POSTS0 COMMENTS