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

com.gitee.starblues.utils.OrderExecution Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package com.gitee.starblues.utils;

/**
 * 执行顺序
 *
 * @author starBlues
 * @version 1.0
 */
public class OrderExecution {

    private OrderExecution(){}

    /**
     * 低优先级
     */
    public static final int LOW = Integer.MAX_VALUE;


    /**
     * 中优先级
     */
    public static final int MIDDLE = Integer.MAX_VALUE;



    /**
     * 高优先级
     */
    public static final int HIGH = Integer.MIN_VALUE;



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy