public final class NullCheckTools
extends java.lang.Object
Constructor and Description |
---|
NullCheckTools() |
Modifier and Type | Method and Description |
---|---|
static int |
compare(java.lang.Comparable o1,
java.lang.Comparable o2)
Null-safe comparison of two
Comparable s with each other, using the compareTo Method. |
static java.lang.Object |
elvis(java.lang.Object[] arr)
This method mimics a chained elvis operator in Groovy Object a ?
|
static java.lang.Object |
elvis(java.lang.Object o,
java.lang.Object nv)
This method makes the elvis operator from Groovy available to NetRexx, i.e.
|
static java.lang.Object |
elvis(java.lang.Object o1,
java.lang.Object o2,
java.lang.Object o3)
This method mimics a chained elvis operator in Groovy Object ?
|
static int |
groovyCompare(java.lang.Comparable o1,
java.lang.Comparable o2)
Uses the Groovy compare operator for comparing the given parameters, null-safe.
|
static java.math.BigDecimal |
NN(java.math.BigDecimal n)
Returns the given parameter bd (
BigDecimal ) if not null, otherwise BigDecimal.ZERO. |
static java.math.BigDecimal |
NN(java.math.BigDecimal n,
java.math.BigDecimal nv)
Returns the given parameter n (
BigDecimal ) if not null, otherwise the passed default. |
static boolean |
NN(java.lang.Boolean b)
This method returns the booleanValue() of b, or boolean false as default.
|
static boolean |
NN(java.lang.Boolean b,
boolean nv)
This method returns the booleanValue() of b, or the passed default value.
|
static double |
NN(java.lang.Double n)
Returns the doubleValue() of n, or 0 as default.
|
static double |
NN(java.lang.Double n,
double nv)
Returns the doubleValue() of n, or the passed default.
|
static float |
NN(java.lang.Float n)
Returns the floatValue() of i, or 0 as default.
|
static float |
NN(java.lang.Float n,
float nv)
Returns the floatValue() of i, or the passed default.
|
static int |
NN(java.lang.Integer n)
Returns the intValue() of n, or 0 as default.
|
static int |
NN(java.lang.Integer n,
int nv)
Returns the intValue() of n, or the passed default.
|
static long |
NN(java.lang.Long n)
Returns the longValue() of n, or 0 as default.
|
static long |
NN(java.lang.Long n,
long nv)
Returns the longValue() of n, or the passed default.
|
static java.lang.Object |
NN(java.lang.Object o,
java.lang.Object nv)
Simply a wrapper for NullCheckTools#elvis(Object, Object)
|
static java.lang.String |
NN(java.lang.String s)
Returns the empty String if the passed String is null, otherwise returns the passed String as is.
|
static java.lang.String |
NN(java.lang.String s,
java.lang.String nv)
Returns the passed fallback value if the passed String is null, otherwise returns the passed String as is.
|
static java.lang.String |
NNString(java.lang.Boolean b,
java.lang.String trueVal,
java.lang.String falseVal)
This method checks the given Boolean b, and returns falseVal if b is
null or false, or trueVal if b is true
|
static java.lang.String |
NNString(java.lang.Boolean b,
java.lang.String trueVal,
java.lang.String falseVal,
java.lang.String nullVal)
This method checks the given Boolean b, and returns nullVal if b is null,
falseVal if b is false, or trueVal if b is true
|
static boolean |
nonNullPayload(java.util.Map.Entry<?,?> entry)
Helper to filter streams of a
Map.entrySet() . |
static boolean |
nullSafeEquals(java.math.BigDecimal a,
java.math.BigDecimal b)
Does a null safe equality check on two
BigDecimal s |
static boolean |
nullSafeEquals(java.lang.Object a,
java.lang.Object b)
Does a null safe equality check on two
Object s
If both Object s are BigDecimal, they will be typecasted as BigDecimal. |
static boolean[] |
requireNonEmpty(boolean[] possiblyEmptyArray,
java.lang.String name)
requireNonEmpty(T[], String) |
static byte[] |
requireNonEmpty(byte[] possiblyEmptyArray,
java.lang.String name)
requireNonEmpty(T[], String) |
static char[] |
requireNonEmpty(char[] possiblyEmptyArray,
java.lang.String name)
requireNonEmpty(T[], String) |
static <T> java.util.Collection<T> |
requireNonEmpty(java.util.Collection<T> possiblyEmptyCollection,
java.lang.String name)
Throws a
EmptyCollectionException if the given Collection is null or empty. |
static double[] |
requireNonEmpty(double[] possiblyEmptyArray,
java.lang.String name)
requireNonEmpty(T[], String) |
static float[] |
requireNonEmpty(float[] possiblyEmptyArray,
java.lang.String name)
requireNonEmpty(T[], String) |
static int[] |
requireNonEmpty(int[] possiblyEmptyArray,
java.lang.String name)
requireNonEmpty(T[], String) |
static long[] |
requireNonEmpty(long[] possiblyEmptyArray,
java.lang.String name)
requireNonEmpty(T[], String) |
static <T,K> java.util.Map<T,K> |
requireNonEmpty(java.util.Map<T,K> possiblyEmptyMap,
java.lang.String name)
Throws a
EmptyMapException if the given Map is null or empty. |
static short[] |
requireNonEmpty(short[] possiblyEmptyArray,
java.lang.String name)
requireNonEmpty(T[], String) |
static java.lang.String |
requireNonEmpty(java.lang.String possibleEmptyString,
java.lang.String name)
Throws a
MissingArgumentException if the given value is null or empty. |
static java.lang.String |
requireNonEmpty(java.lang.String possibleEmptyString,
java.lang.String name,
boolean treatWhiteSpaceAsEmpty)
Throws a
MissingArgumentException if the given value is null or empty. |
static <T> T[] |
requireNonEmpty(T[] possiblyEmptyArray,
java.lang.String name)
throws a
EmptyArrayException if the given Array is null or empty. |
static void |
requireNonNull(java.util.Collection<? extends java.lang.Object> possibleNullValues,
java.util.Collection<java.lang.String> namesOfArguments)
Deprecated.
please use the requireNonNull functions taking "pairs" of object/denomination instead
|
static void |
requireNonNull(java.lang.Object p1,
java.lang.String name1,
java.lang.Object p2,
java.lang.String name2)
Throws a
MissingArgumentException if either of the given values is null. |
static void |
requireNonNull(java.lang.Object p1,
java.lang.String name1,
java.lang.Object p2,
java.lang.String name2,
java.lang.Object p3,
java.lang.String name3)
Throws a
MissingArgumentException if any of the given values are null. |
static void |
requireNonNull(java.lang.Object p1,
java.lang.String name1,
java.lang.Object p2,
java.lang.String name2,
java.lang.Object p3,
java.lang.String name3,
java.lang.Object p4,
java.lang.String name4)
Throws a
MissingArgumentException if any of the given values are null. |
static void |
requireNonNull(java.lang.Object p1,
java.lang.String name1,
java.lang.Object p2,
java.lang.String name2,
java.lang.Object p3,
java.lang.String name3,
java.lang.Object p4,
java.lang.String name4,
java.lang.Object p5,
java.lang.String name5)
Throws a
MissingArgumentException if any of the given values are null. |
static <T> void |
requireNonNull(T[] possibleNullValues,
java.lang.String[] namesOfArguments)
Deprecated.
please use the requireNonNull functions taking "pairs" of object/denomination instead
|
static <T> T |
requireNonNull(T possibleNullValue,
java.lang.String nameOfArgument)
Throws a
MissingArgumentException if the given value is null. |
static void |
requireNonNullAndNonEmpty(java.util.Collection<? extends java.lang.Object> possibleNullOrEmptyValues,
java.util.Collection<java.lang.String> namesOfArguments)
Deprecated.
please use the requireNonNullAndNonEmpty functions taking "pairs" of object/denomination instead
|
static void |
requireNonNullAndNonEmpty(java.lang.Object o,
java.lang.String name) |
static void |
requireNonNullAndNonEmpty(java.lang.Object p1,
java.lang.String name1,
java.lang.Object p2,
java.lang.String name2)
Throws a
MissingArgumentException if either of the given values is null or empty. |
static void |
requireNonNullAndNonEmpty(java.lang.Object p1,
java.lang.String name1,
java.lang.Object p2,
java.lang.String name2,
java.lang.Object p3,
java.lang.String name3)
Throws a
MissingArgumentException if either of the given values is null or empty. |
static void |
requireNonNullAndNonEmpty(java.lang.Object p1,
java.lang.String name1,
java.lang.Object p2,
java.lang.String name2,
java.lang.Object p3,
java.lang.String name3,
java.lang.Object p4,
java.lang.String name4)
Throws a
MissingArgumentException if either of the given values is null or empty. |
static void |
requireNonNullAndNonEmpty(java.lang.Object p1,
java.lang.String name1,
java.lang.Object p2,
java.lang.String name2,
java.lang.Object p3,
java.lang.String name3,
java.lang.Object p4,
java.lang.String name4,
java.lang.Object p5,
java.lang.String name5)
Throws a
MissingArgumentException if either of the given values is null or empty. |
static <T> void |
requireNonNullAndNonEmpty(T[] possibleNullOrEmptyValues,
java.lang.String[] namesOfArguments)
Deprecated.
please use the requireNonNullAndNonEmpty functions taking "pairs" of object/denomination instead
|
static <T> void |
requireOneIsNonNull(T[] possibleNullValues,
java.lang.String[] namesOfArguments)
Checks that at least one of the arguments has a value.
|
static <T> void |
requireOneIsNonNull(T[] possibleNullValues,
java.lang.String[] namesOfArguments,
java.lang.String additionalText)
Checks that at least one of the arguments has a value.
|
public static final java.lang.Object elvis(java.lang.Object o, java.lang.Object nv)
o
- the first object to elvisnv
- the second object to elvispublic static final java.lang.Object elvis(java.lang.Object o1, java.lang.Object o2, java.lang.Object o3)
o1
- the first object to elviso2
- the second object to elviso3
- the third object to elvispublic static final java.lang.Object elvis(java.lang.Object[] arr)
public static final boolean NN(java.lang.Boolean b)
b
- the value to test.public static final boolean NN(java.lang.Boolean b, boolean nv)
b
- the value to test.nv
- the default return value - boolean false.public static final java.lang.String NNString(java.lang.Boolean b, java.lang.String trueVal, java.lang.String falseVal)
b
- the value to test.trueVal
- the return value if b is truefalseVal
- the return value if b is null or falsepublic static final java.lang.String NNString(java.lang.Boolean b, java.lang.String trueVal, java.lang.String falseVal, java.lang.String nullVal)
b
- the value to test.trueVal
- the return value if b is truefalseVal
- the return value if b is falsenullVal
- the return value if b is nullpublic static final int NN(java.lang.Integer n)
n
- the value to test.public static final int NN(java.lang.Integer n, int nv)
n
- the value to test.nv
- the default return value.public static final long NN(java.lang.Long n)
n
- the value to test.public static final long NN(java.lang.Long n, long nv)
n
- the value to test.nv
- the default return value.public static final java.lang.String NN(java.lang.String s)
s
- the String to testpublic static final java.lang.String NN(java.lang.String s, java.lang.String nv)
s
- the String to testnv
- the fallback value for a passed null String, defaults to the empty Stringpublic static final java.math.BigDecimal NN(java.math.BigDecimal n)
BigDecimal
) if not null, otherwise BigDecimal.ZERO.n
- the value to test.BigDecimal
) if not null, otherwise BigDecimal.ZERO.public static final java.math.BigDecimal NN(java.math.BigDecimal n, java.math.BigDecimal nv)
BigDecimal
) if not null, otherwise the passed default.n
- the value to test.nv
- the default return value.BigDecimal
) if not null, otherwise the default.public static final float NN(java.lang.Float n)
n
- the value to test.public static final float NN(java.lang.Float n, float nv)
n
- the value to test.nv
- the default return value.public static final double NN(java.lang.Double n)
n
- the value to test.public static final double NN(java.lang.Double n, double nv)
n
- the value to test.nv
- the default return value.public static final java.lang.Object NN(java.lang.Object o, java.lang.Object nv)
o
- the first object to elvisnv
- the second object to elvispublic static final boolean nullSafeEquals(java.lang.Object a, java.lang.Object b)
Object
s
If both Object
s are BigDecimal, they will be typecasted as BigDecimal.a
- the one Object
to compareb
- the other Object
to comparetrue
if the given Object
s are equalspublic static final boolean nullSafeEquals(java.math.BigDecimal a, java.math.BigDecimal b)
BigDecimal
sa
- the one BigDecimal
to compareb
- the other BigDecimal
to comparetrue
if the given BigDecimal
s are equalspublic static final int compare(java.lang.Comparable o1, java.lang.Comparable o2)
Comparable
s with each other, using the compareTo Method.
Returns zero if both Comparable
s are null or identical in value.
Returns -1 if only o1 is null, a negative number if o1 is smaller than o2.
Returns 1 if only o2 is null, a positive number larger than zero if o2 is bigger than o1.o1
- the one Comparable
to be compared.o2
- the other Comparable
to be compared.Comparable
spublic static final int groovyCompare(java.lang.Comparable o1, java.lang.Comparable o2)
compare(Comparable, Comparable)
, this method allows comparing Numbers of different types by
supporting 'type promotion'/widening of a smaller type to a larger one.
e.g. when comparing Short and BigDecimal, then the Short is internally widened to BigDecimal first.public static final <T> T requireNonNull(T possibleNullValue, java.lang.String nameOfArgument) throws de.ipcon.tools.MissingArgumentException
MissingArgumentException
if the given value is null.
The name of the argument should be specified for the error message of the exceptionT
- the type of the valuepossibleNullValue
- the value to check for nullnameOfArgument
- the name of the argumentMissingArgumentException
- if the value was nullpublic static final <T> void requireOneIsNonNull(T[] possibleNullValues, java.lang.String[] namesOfArguments)
T
- the type of the valuespossibleNullValues
- the values to check for nullnamesOfArguments
- the names of the argumentsMissingArgumentException
- if none of the arguments has a value.public static final <T> void requireOneIsNonNull(T[] possibleNullValues, java.lang.String[] namesOfArguments, java.lang.String additionalText)
T
- the type of the valuespossibleNullValues
- the values to check for nullnamesOfArguments
- the names of the argumentsadditionalText
- additional text for the exception messageMissingArgumentException
- if none of the arguments has a value.public static final java.lang.String requireNonEmpty(java.lang.String possibleEmptyString, java.lang.String name)
MissingArgumentException
if the given value is null or empty.
The name of the argument should be specified for the error message of the exceptionpossibleEmptyString
- the value to check for null or emptyname
- the name of the argumentMissingArgumentException
- if the value was null or emptypublic static final java.lang.String requireNonEmpty(java.lang.String possibleEmptyString, java.lang.String name, boolean treatWhiteSpaceAsEmpty)
MissingArgumentException
if the given value is null or empty.
The name of the argument should be specified for the error message of the exceptionpossibleEmptyString
- the value to check for null or emptyname
- the name of the argumenttreatWhiteSpaceAsEmpty
- flag to treat white space as emptyMissingArgumentException
- if the value was null or emptypublic static final byte[] requireNonEmpty(byte[] possiblyEmptyArray, java.lang.String name) throws de.ipcon.tools.EmptyArrayException
requireNonEmpty(T[], String)
de.ipcon.tools.EmptyArrayException
public static final short[] requireNonEmpty(short[] possiblyEmptyArray, java.lang.String name) throws de.ipcon.tools.EmptyArrayException
requireNonEmpty(T[], String)
de.ipcon.tools.EmptyArrayException
public static final int[] requireNonEmpty(int[] possiblyEmptyArray, java.lang.String name) throws de.ipcon.tools.EmptyArrayException
requireNonEmpty(T[], String)
de.ipcon.tools.EmptyArrayException
public static final long[] requireNonEmpty(long[] possiblyEmptyArray, java.lang.String name) throws de.ipcon.tools.EmptyArrayException
requireNonEmpty(T[], String)
de.ipcon.tools.EmptyArrayException
public static final float[] requireNonEmpty(float[] possiblyEmptyArray, java.lang.String name) throws de.ipcon.tools.EmptyArrayException
requireNonEmpty(T[], String)
de.ipcon.tools.EmptyArrayException
public static final double[] requireNonEmpty(double[] possiblyEmptyArray, java.lang.String name) throws de.ipcon.tools.EmptyArrayException
requireNonEmpty(T[], String)
de.ipcon.tools.EmptyArrayException
public static final boolean[] requireNonEmpty(boolean[] possiblyEmptyArray, java.lang.String name) throws de.ipcon.tools.EmptyArrayException
requireNonEmpty(T[], String)
de.ipcon.tools.EmptyArrayException
public static final char[] requireNonEmpty(char[] possiblyEmptyArray, java.lang.String name) throws de.ipcon.tools.EmptyArrayException
requireNonEmpty(T[], String)
de.ipcon.tools.EmptyArrayException
public static final <T> T[] requireNonEmpty(T[] possiblyEmptyArray, java.lang.String name) throws de.ipcon.tools.EmptyArrayException
EmptyArrayException
if the given Array is null or empty.
The name of the argument should be specified for the error message of the exceptionEmptyCollectionException
- if the value was null or emptyde.ipcon.tools.EmptyArrayException
public static final <T> java.util.Collection<T> requireNonEmpty(java.util.Collection<T> possiblyEmptyCollection, java.lang.String name) throws de.ipcon.tools.EmptyCollectionException
EmptyCollectionException
if the given Collection is null or empty.
The name of the argument should be specified for the error message of the exceptionEmptyCollectionException
- if the value was null or emptypublic static final <T,K> java.util.Map<T,K> requireNonEmpty(java.util.Map<T,K> possiblyEmptyMap, java.lang.String name) throws de.ipcon.tools.EmptyMapException
EmptyMapException
if the given Map is null or empty.
The name of the argument should be specified for the error message of the exceptionEmptyMapException
- if the value was null or emptypublic static final void requireNonNullAndNonEmpty(java.lang.Object o, java.lang.String name)
public static final void requireNonNull(java.lang.Object p1, java.lang.String name1, java.lang.Object p2, java.lang.String name2) throws de.ipcon.tools.MissingArgumentException
MissingArgumentException
if either of the given values is null.p1
- The first value to check for null.name1
- The name of the first value, used in the exception message.p2
- The second value to check for null.name2
- The name of the second value, used in the exception message.MissingArgumentException
- if either of the given values was nullpublic static final void requireNonNull(java.lang.Object p1, java.lang.String name1, java.lang.Object p2, java.lang.String name2, java.lang.Object p3, java.lang.String name3) throws de.ipcon.tools.MissingArgumentException
MissingArgumentException
if any of the given values are null.p1
- The first value to check for null.name1
- The name of the first value, used in the exception message.p2
- The second value to check for null.name2
- The name of the second value, used in the exception message.p3
- The third value to check for null.name3
- The name of the third value, used in the exception message.MissingArgumentException
- if any of the given values was nullpublic static final void requireNonNull(java.lang.Object p1, java.lang.String name1, java.lang.Object p2, java.lang.String name2, java.lang.Object p3, java.lang.String name3, java.lang.Object p4, java.lang.String name4) throws de.ipcon.tools.MissingArgumentException
MissingArgumentException
if any of the given values are null.p1
- The first value to check for null.name1
- The name of the first value, used in the exception message.p2
- The second value to check for null.name2
- The name of the second value, used in the exception message.p3
- The third value to check for null.name3
- The name of the third value, used in the exception message.p4
- The fourth value to check for null.name4
- The name of the fourth value, used in the exception message.MissingArgumentException
- if any of the given values was nullpublic static final void requireNonNull(java.lang.Object p1, java.lang.String name1, java.lang.Object p2, java.lang.String name2, java.lang.Object p3, java.lang.String name3, java.lang.Object p4, java.lang.String name4, java.lang.Object p5, java.lang.String name5) throws de.ipcon.tools.MissingArgumentException
MissingArgumentException
if any of the given values are null.p1
- The first value to check for null.name1
- The name of the first value, used in the exception message.p2
- The second value to check for null.name2
- The name of the second value, used in the exception message.p3
- The third value to check for null.name3
- The name of the third value, used in the exception message.p4
- The fourth value to check for null.name4
- The name of the fourth value, used in the exception message.p5
- The fifth value to check for null.name5
- The name of the fifth value, used in the exception message.MissingArgumentException
- if any of the given values was null@Deprecated public static final <T> void requireNonNull(T[] possibleNullValues, java.lang.String[] namesOfArguments) throws de.ipcon.tools.MissingArgumentException
MissingArgumentException
for the first one of the given values whose value is
null. The names of the arguments should be specified for the error message
of the exception.MissingArgumentException
- if one of the given values was null@Deprecated public static final void requireNonNull(java.util.Collection<? extends java.lang.Object> possibleNullValues, java.util.Collection<java.lang.String> namesOfArguments) throws de.ipcon.tools.MissingArgumentException
MissingArgumentException
for the first one of the given values whose value is
null. The names of the arguments should be specified for the error message
of the exception.MissingArgumentException
- if one of the given values was nullpublic static final void requireNonNullAndNonEmpty(java.lang.Object p1, java.lang.String name1, java.lang.Object p2, java.lang.String name2)
MissingArgumentException
if either of the given values is null or empty.p1
- The first value to check for null or emptiness.name1
- The name of the first value, used in the exception message.p2
- The second value to check for null or emptiness.name2
- The name of the second value, used in the exception message.MissingArgumentException
- if either of the given values was null or emptyEmptyMapException
- if one of the given values is an empty mapEmptyCollectionException
- if one of the given values is any other empty collectionEmptyArrayException
- if one of the given values is an empty arraypublic static final void requireNonNullAndNonEmpty(java.lang.Object p1, java.lang.String name1, java.lang.Object p2, java.lang.String name2, java.lang.Object p3, java.lang.String name3)
MissingArgumentException
if either of the given values is null or empty.p1
- The first value to check for null or emptiness.name1
- The name of the first value, used in the exception message.p2
- The second value to check for null or emptiness.name2
- The name of the second value, used in the exception message.p3
- The third value to check for null or emptiness.name3
- The name of the third value, used in the exception message.MissingArgumentException
- if either of the given values was null or emptyEmptyMapException
- if one of the given values is an empty mapEmptyCollectionException
- if one of the given values is any other empty collectionEmptyArrayException
- if one of the given values is an empty arraypublic static final void requireNonNullAndNonEmpty(java.lang.Object p1, java.lang.String name1, java.lang.Object p2, java.lang.String name2, java.lang.Object p3, java.lang.String name3, java.lang.Object p4, java.lang.String name4)
MissingArgumentException
if either of the given values is null or empty.p1
- The first value to check for null or emptiness.name1
- The name of the first value, used in the exception message.p2
- The second value to check for null or emptiness.name2
- The name of the second value, used in the exception message.p3
- The third value to check for null or emptiness.name3
- The name of the third value, used in the exception message.p4
- The fourth value to check for null or emptiness.name4
- The name of the fourth value, used in the exception message.MissingArgumentException
- if either of the given values was null or emptyEmptyMapException
- if one of the given values is an empty mapEmptyCollectionException
- if one of the given values is any other empty collectionEmptyArrayException
- if one of the given values is an empty arraypublic static final void requireNonNullAndNonEmpty(java.lang.Object p1, java.lang.String name1, java.lang.Object p2, java.lang.String name2, java.lang.Object p3, java.lang.String name3, java.lang.Object p4, java.lang.String name4, java.lang.Object p5, java.lang.String name5)
MissingArgumentException
if either of the given values is null or empty.p1
- The first value to check for null or emptiness.name1
- The name of the first value, used in the exception message.p2
- The second value to check for null or emptiness.name2
- The name of the second value, used in the exception message.p3
- The third value to check for null or emptiness.name3
- The name of the third value, used in the exception message.p4
- The fourth value to check for null or emptiness.name4
- The name of the fourth value, used in the exception message.p5
- The fourth value to check for null or emptiness.name5
- The name of the fourth value, used in the exception message.MissingArgumentException
- if either of the given values was null or emptyEmptyMapException
- if one of the given values is an empty mapEmptyCollectionException
- if one of the given values is any other empty collectionEmptyArrayException
- if one of the given values is an empty array@Deprecated public static final <T> void requireNonNullAndNonEmpty(T[] possibleNullOrEmptyValues, java.lang.String[] namesOfArguments)
MissingArgumentException
for the first one of the given values whose value is either of:
MissingArgumentException
- if one of the given values was nullEmptyMapException
- if one of the given values is an empty mapEmptyCollectionException
- if one of the given values is any other empty collectionEmptyArrayException
- if one of the given values is an empty array@Deprecated public static final void requireNonNullAndNonEmpty(java.util.Collection<? extends java.lang.Object> possibleNullOrEmptyValues, java.util.Collection<java.lang.String> namesOfArguments)
MissingArgumentException
for the first one of the given values whose value is either of:
MissingArgumentException
- if one of the given values was nullEmptyMapException
- if one of the given values is an empty mapEmptyCollectionException
- if one of the given values is any other empty collectionEmptyArrayException
- if one of the given values is an empty arraypublic static final boolean nonNullPayload(java.util.Map.Entry<?,?> entry)
Map.entrySet()
.entry
- the parameter to check, nullable.Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.