Uses of Class
org.tquadrat.foundation.exception.NullArgumentException
Packages that use NullArgumentException
Package
Description
A collection of
Exceptions
that are defined for the Foundation library set.
Some general language extensions provided by the Foundation
Library.
-
Uses of NullArgumentException in org.tquadrat.foundation.exception
Subclasses of NullArgumentException in org.tquadrat.foundation.exceptionModifier and TypeClassDescriptionfinal class
This is a specialized implementation for theIllegalArgumentException
that should be used instead of the latter in cases where a blank String is provided as an illegal argument value.final class
This is a specialized implementation for theIllegalArgumentException
that should be used instead of the latter in cases where an empty String, array orCollection
argument is provided as an illegal argument value. -
Uses of NullArgumentException in org.tquadrat.foundation.lang
Methods in org.tquadrat.foundation.lang that throw NullArgumentExceptionModifier and TypeMethodDescriptionstatic final <T> int
Objects.compare
(T object, T other, Comparator<? super T> comparator) Returns 0 if the arguments are identical andcomparator.compare(a, b)
otherwise.static final <T> T
Applies the given validation on the given value, and if that fails, anValidationException
with the specified message is thrown.static final <T> T
Objects.requireNonNull
(T obj) static final <T> T
Objects.requireNonNull
(T obj, String message) Checks if the given valueobj
isnull
and throws aValidationException
with the specified message if it isnull
.static final <T> T
Objects.requireNonNullElse
(T obj, T defaultObj) Returns the first argument if it is notnull
, otherwise it returns the non-null
second argument.static final <T> T
Objects.requireNonNullElseGet
(T obj, Supplier<? extends T> supplier) Returns the first argument if it is notnull
, otherwise it returns the non-null
value returned bysupplier.get()
.