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