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

cn.gjing.tools.excel.write.valid.Rank Maven / Gradle / Ivy

There is a newer version: 2021.12.3
Show newest version
package cn.gjing.tools.excel.write.valid;

/**
 * Error box grade
 *
 * @author Gjing
 **/
public enum Rank {
    /**
     * Tip rank
     */
    WARNING(1), STOP(0), INFO(2);
    private final int rank;

    Rank(int type) {
        this.rank = type;
    }

    public int getRank() {
        return rank;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy