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

com.mybatishelper.core.enums.Order Maven / Gradle / Ivy

package com.mybatishelper.core.enums;

public enum Order {
    ASC("asc"),DESC("desc");
    private String value;
    Order(String value){this.value = value;}
    public String getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy