![]() |
VOOZH | about |
The checkedSortedSet() method of java.util.Collections class is used to return a dynamically typesafe view of the specified sorted set.
The returned sorted set will be serializable if the specified sorted set is serializable.
Since null is considered to be a value of any reference type, the returned sorted set permits insertion of null elements whenever the backing sorted set does.
Syntax:
public static SortedSet checkedSortedSet(SortedSet s, Class type)
Parameters: This method takes the following argument as a parameter:
Return Value: This method returns a dynamically typesafe view of the specified sorted set.
Below are the examples to illustrate the checkedSortedSet() method
Example 1:
Sorted Set: [Gopal, Ram, Verma] Typesafe view of sorted set: [Gopal, Ram, Verma]
Example 2:
Sorted Set: [20, 30, 40] Typesafe view of sorted set: [20, 30, 40]