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

com.rookie.common.constant.Mode Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.rookie.common.constant;

/**
 * @author hanhan
 */

public enum Mode {
    /**
     * 模式
     */
    TRIM_LEFT(-1),
    TRIM_RIGHT(1),
    TRIM_ALL(0);

    private int mode;

    Mode(int mode){
        this.mode = mode;
    }

    public int getMode() {
        return mode;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy