VOOZH about

URL: https://www.geeksforgeeks.org/java/java-collections-unmodifiablesortedset%e2%80%8b-method-with-examples/

⇱ Java Collections unmodifiableSortedSet​() Method with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Java Collections unmodifiableSortedSet​() Method with Examples

Last Updated : 28 Dec, 2021

The unmodifiableSortedSet() method of Java Collections is available in TreeSet. A Tree Set is a data structure that can store elements in order.

Syntax:

SortedSet<datatype> data = new TreeSet<String>(); 

where,

  • datatype specifies the type of elements
  • data is the input data.

 unmodifiableSortedSet() Method 

The unmodifiableSortedSet() method of the Java Collections class is used to get an unmodifiable view of the specified sorted set.

Syntax:

public static <T> SortedSet<T> unmodifiableSortedSet(SortedSet<T> data) 

where data is the sorted set that is returned in an unmodifiable view.

Return type: This method returns an unmodifiable view of the specified Sorted Set.

Example 1:

Demonstration before and after modification


Output
[Python, R, java, sql]
[Python, R, bigdata/iot, java, sql]

Example 2:


Output
[1, 2, 3, 34]
[1, 2, 3, 32, 34]
Comment