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

com.ideaaedi.commonds.function.NoArgFunction Maven / Gradle / Ivy

The newest version!
package com.ideaaedi.commonds.function;

/**
 * 无参 Function
 *
 * @author JustryDeng 
 * @since 2022/4/19 11:17
 */
@FunctionalInterface
public interface NoArgFunction {
    
    /**
     * 执行逻辑
     *
     * @return 执行结果
     */
    R apply();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy