Package org.bonitasoft.engine.commons
Class NullCheckingUtil.NullCheckResult
java.lang.Object
org.bonitasoft.engine.commons.NullCheckingUtil.NullCheckResult
- Enclosing class:
- NullCheckingUtil
Represents null value returned by
NullCheckingUtil.findNull(Object...).- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionintgetSize()Returns the number of parameters given toNullCheckingUtil.findNull(Object...)booleanhasNull()Returns true if some parameters given toNullCheckingUtil.findNull(Object...)were null.booleanisNull(int i) Returns true if the i th parameter given toNullCheckingUtil.findNull(Object...)was null.
-
Method Details
-
hasNull
public boolean hasNull()Returns true if some parameters given toNullCheckingUtil.findNull(Object...)were null.- Returns:
- true if some parameters given to
NullCheckingUtil.findNull(Object...)were null. - See Also:
-
getSize
public int getSize()Returns the number of parameters given toNullCheckingUtil.findNull(Object...)- Returns:
- the number of parameters given to
NullCheckingUtil.findNull(Object...) - See Also:
-
isNull
public boolean isNull(int i) Returns true if the i th parameter given toNullCheckingUtil.findNull(Object...)was null.- Parameters:
i- the rank of the parameter given toNullCheckingUtil.findNull(Object...).- Returns:
- true if the i th parameter given to
NullCheckingUtil.findNull(Object...)was null.
-