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

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

package com.moon.core.model.supplier;

import java.util.function.Supplier;

/**
 * @author moonsky
 */
@FunctionalInterface
public interface IdSupplier {
    /**
     * 获取 ID
     *
     * @return
     */
    T getId();
    /**
     * transfer to a {@link Supplier}
     *
     * @return a new supplier
     */
    default Supplier asIdSupplier(){ return this::getId; }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy