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

com.authkit.Util Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package com.authkit;

public final class Util {

    public static final  T orDefault(T value, T defaultValue) {
        return value == null ? defaultValue : value;
    }

    public static final  T required(T value, String label) {
        if (value == null) {
            throw new IllegalArgumentException(String.format("%s is required", label));
        }
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy