![JAR search and dependency download from the Maven repository](/logo.png)
com.rpamis.extension.spi.loading.LoadPriority Maven / Gradle / Ivy
package com.rpamis.extension.spi.loading;
import java.util.Comparator;
/**
* 加载优先级接口
*
* @author benym
* @date 2023/10/31 23:00
*/
public interface LoadPriority extends Comparable {
/**
* 最大优先级
*/
int MAX_PRIORITY = Integer.MIN_VALUE;
/**
* 最小优先级
*/
int MIN_PRIORITY = Integer.MAX_VALUE;
/**
* 默认优先级
*/
int DEFAULT_PRIORITY = 0;
Comparator
© 2015 - 2025 Weber Informatics LLC | Privacy Policy