Package com.github.tadukoo.util.map
Class MultiMapUtil
java.lang.Object
com.github.tadukoo.util.map.MultiMapUtil
Util functions for dealing with
MultiMap
s.- Version:
- Alpha v.0.2
- Author:
- Logan Ferree (Tadukoo)
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
Checks if the given MultiMap is blank (either null or an empty multiMap).static boolean
isNotBlank
(MultiMap<?, ?> map) Checks if the given MultiMap is NOT blank (blank = either null or an empty multiMap).
-
Constructor Details
-
MultiMapUtil
private MultiMapUtil()Not allowed to make a MultiMapUtil
-
-
Method Details
-
isBlank
Checks if the given MultiMap is blank (either null or an empty multiMap).- Parameters:
map
- The MultiMap to check- Returns:
- true if the MultiMap is null or empty
-
isNotBlank
Checks if the given MultiMap is NOT blank (blank = either null or an empty multiMap).- Parameters:
map
- The MultiMap to check- Returns:
- true if the MultiMap is not null and not empty
-