Package org.bonitasoft.engine.commons
Class NullCheckingUtil.NullCheckResult
- java.lang.Object
-
- org.bonitasoft.engine.commons.NullCheckingUtil.NullCheckResult
-
- Enclosing class:
- NullCheckingUtil
public static class NullCheckingUtil.NullCheckResult extends java.lang.Object
Represents null value returned byNullCheckingUtil.findNull(Object...)
.- See Also:
NullCheckingUtil.findNull(Object...)
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getSize()
Returns the number of parameters given toNullCheckingUtil.findNull(Object...)
boolean
hasNull()
Returns true if some parameters given toNullCheckingUtil.findNull(Object...)
were null.boolean
isNull(int i)
Returns true if the i th parameter given toNullCheckingUtil.findNull(Object...)
was null.
-
-
-
Method Detail
-
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:
NullCheckingUtil.findNull(Object...)
-
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:
NullCheckingUtil.findNull(Object...)
-
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.
-
-