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

com.anwen.mongo.enums.OrderEnum Maven / Gradle / Ivy

There is a newer version: 2.1.5
Show newest version
package com.anwen.mongo.enums;

/**
 * 排序枚举
 * @author JiaChaoYang
 * @date 2023-02-19 13:25
 */
public enum OrderEnum {

    ASC(1),

    DESC(-1)

    ;

    private final Integer value;

    public Integer getValue() {
        return value;
    }

    OrderEnum(Integer value) {
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy