All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.dreamhead.bot.util.Preconditions Maven / Gradle / Ivy

The newest version!
package com.github.dreamhead.bot.util;

import java.util.Objects;

public final class Preconditions {
    public static  T[] checkNotNullElements(final T[] array, final String message) {
        if (array != null) {
            for (T element : array) {
                Objects.requireNonNull(element, message);
            }
        }

        return array;
    }

    private Preconditions() {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy