El método java.util.SortedSet .isEmpty() se utiliza para comprobar si un SortedSet está vacío o no. Devuelve True si SortedSet está vacío; de lo contrario, devuelve False.
Sintaxis:
boolean isEmpty()
Parámetros: Este método no toma ningún parámetro.
Valor devuelto: el método devuelve True si SortedSet está vacío; de lo contrario, devuelve False.
Nota : el método isEmpty() en SortedSet se hereda de la interfaz Set en Java.
El siguiente programa ilustra el método java.util.SortedSet.isEmpty():
// Java code to illustrate isEmpty() 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>(); // Use 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 the empty set System.out.println("Is the set empty? " + set.isEmpty()); // Clearing the set using clear() method set.clear(); // Again Checking for the empty set System.out.println("Is the set empty? " + set.isEmpty()); } }
Producción:
Set: [4, Geeks, To, Welcome] Is the set empty? false Is the set empty? true
Referencia : https://docs.oracle.com/javase/7/docs/api/java/util/Set.html#isEmpty()