Package org.keycloak.models.map.common
Class UndefinedValuesUtils
- java.lang.Object
-
- org.keycloak.models.map.common.UndefinedValuesUtils
-
public class UndefinedValuesUtils extends Object
This Util class defines conditions when objects can be considered undefined
For example:String
is undefined if it isnull
orempty
Collection
is undefined if it isnull
,empty
or all items are undefinedMap
is undefined if it isnull
,empty
, or all values are undefined
-
-
Constructor Summary
Constructors Constructor Description UndefinedValuesUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
isUndefined(Object o)
Decides whether theo
is defined or not
-