SortedSet contains() method in Java with Examples Last Updated : 12 Jul, 2025 Comments Improve Suggest changes Like Article Like Report The contains() method is used to check whether a specific element is present in the SortedSet or not. So basically it is used to check if a SortedSet contains any particular element. Syntax: boolean contains(Object element) Parameters: The parameter element is of the type of SortedSet. This is the element that needs to be tested if it is present in the set or not. Return Value: The method returns true if the element is present in the set else return False. Note: The contains() method in SortedSet is inherited from the Set interface in Java. Below program illustrate the Java.util.Set.contains() method: Java // Java code to illustrate // SortedSet.contains() method import java.io.*; import java.util.*; public class SortedSetDemo { public static void main(String args[]) { // Creating an empty Set SortedSet<String> set = new TreeSet<String>(); // Using add() method to // add elements into the Set set.add("Welcome"); set.add("To"); set.add("Geeks"); set.add("4"); set.add("Geeks"); // Displaying the Set System.out.println("Set: " + set); // Check for "Geeks" in the set System.out.println( "Does the Set contains 'Geeks'? " + set.contains("Geeks")); // Check for "4" in the set System.out.println( "Does the Set contains '4'? " + set.contains("4")); // Check if the Set contains "No" System.out.println( "Does the Set contains 'No'? " + set.contains("No")); } } Output: Set: [4, Geeks, To, Welcome] Does the Set contains 'Geeks'? true Does the Set contains '4'? true Does the Set contains 'No'? false Reference: https://docs.oracle.com/javase/7/docs/api/java/util/Set.html#contains(java.lang.Object) Comment More infoAdvertise with us G gopaldave Follow Improve Article Tags : Java Java - util package Java-Functions Java-SortedSet Practice Tags : Java Explore BasicsIntroduction to Java4 min readJava Programming Basics9 min readJava Methods7 min readAccess Modifiers in Java6 min readArrays in Java9 min readJava Strings8 min readRegular Expressions in Java7 min readOOPs & InterfacesClasses and Objects in Java10 min readJava Constructors10 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages7 min readJava Interface11 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java6 min readIterator in Java5 min readJava Comparator Interface6 min readException HandlingJava Exception Handling8 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial15+ min readSynchronization in Java10 min readFile Handling in Java5 min readJava Method References9 min readJava 8 Stream Tutorial15+ min readJava Networking15+ min readJDBC Tutorial12 min readJava Memory Management4 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers15+ min readJava Programs - Java Programming Examples8 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions7 min readJava Quiz | Level Up Your Java Skills1 min readTop 50 Java Project Ideas For Beginners and Advanced [Update 2025]15+ min read Like