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

org.jtwig.reflection.util.Optionals Maven / Gradle / Ivy

There is a newer version: 5.87.0.RELEASE
Show newest version
package org.jtwig.reflection.util;

import com.google.common.base.Optional;
import com.google.common.base.Supplier;

public final class Optionals {

    private Optionals () {}
    public static  Optional orOptionalSupplier (Optional input, Supplier> supplier) {
        if (!input.isPresent()) {
            return supplier.get();
        } else {
            return input;
        }
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy