
com.moon.core.model.supplier.KeySupplier Maven / Gradle / Ivy
package com.moon.core.model.supplier;
import java.util.function.Supplier;
/**
* @author moonsky
*/
@FunctionalInterface
public interface KeySupplier {
/**
* 获取 KEY
*
* @return key
*/
T getKey();
/**
* transfer to a {@link Supplier}
*
* @return a new supplier
*/
default Supplier asKeySupplier() { return this::getKey; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy