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

com.neko233.toolchain.common.base.ChooseUtils233 Maven / Gradle / Ivy

package com.neko233.toolchain.common.base;

/**
 * @author SolarisNeko on 2023-01-01
 */
public class ChooseUtils233 {

    public static  T choose(boolean condition, T ifTrue, T ifFalse) {
        if (condition) {
            return ifTrue;
        }
        return ifFalse;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy