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

com.moon.core.model.supplier.NameSupplier Maven / Gradle / Ivy

package com.moon.core.model.supplier;

import java.util.function.Supplier;

/**
 * @author moonsky
 */
@FunctionalInterface
public interface NameSupplier {

    /**
     * 获取 name
     *
     * @return name
     */
    T getName();

    /**
     * transfer to a {@link Supplier}
     *
     * @return a new supplier
     */
    default Supplier asNameSupplier() { return this::getName; }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy