Uses of Annotation Interface
jp.ecuacion.lib.core.annotation.RequireElementNonnull
Packages that use RequireElementNonnull
-
Uses of RequireElementNonnull in jp.ecuacion.lib.core.util
Method parameters in jp.ecuacion.lib.core.util with annotations of type RequireElementNonnullModifier and TypeMethodDescriptionstatic <T> Collection<T> ObjectsUtil.requireElementNonNull(Collection<T> collection) Validates elements of a collection is notnulland throwsRequireElementNonNullExceptionif the argument value does not match the condition.static <T> T[]ObjectsUtil.requireElementNonNull(T[] objects) Validates elements of an array is notnulland throwsRequireElementNonNullExceptionif the argument value does not match the condition.static <T> Collection<T> ObjectsUtil.requireElementsNonDuplicated(Collection<T> collection) Validates elements of a collection is notnulland throwsRequireElementNonNullExceptionif the argument value does not match the condition.static <T> T[]ObjectsUtil.requireElementsNonDuplicated(T[] objects) Validates elements of an array is notnulland throwsRequireElementNonNullExceptionif the argument value does not match the condition.