The method com.google.common.collect.Multimap.isEmpty in Java is used to check if the Multimap is empty or not. It returns a boolean value indicating whether the Multimap has no key-value pairs or entries. If the Multimap is empty, the method returns true; otherwise, it returns false. This method helps in determining whether the Multimap collection is populated with elements or not.
Java Multimap.isEmpty - 15 examples found. These are the top rated real world Java examples of com.google.common.collect.Multimap.isEmpty extracted from open source projects. You can rate examples to help us improve the quality of examples.