cn.hippo4j.common.toolkit.ConditionUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hippo4j-common Show documentation
Show all versions of hippo4j-common Show documentation
HIPPO4J、HIPPO4J-CORE 公共代码库.
package cn.hippo4j.common.toolkit;
import cn.hippo4j.common.function.NoArgsConsumer;
/**
* Condition util.
*
* @author chen.ma
* @date 2021/11/6 22:40
*/
public class ConditionUtil {
public static void condition(boolean condition, NoArgsConsumer trueConsumer, NoArgsConsumer falseConsumer) {
if (condition) {
trueConsumer.accept();
} else {
falseConsumer.accept();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy