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

com.dream.template.annotation.Order Maven / Gradle / Ivy

package com.dream.template.annotation;

public enum Order {
    ASC("asc"),
    DESC("desc");
    private String orderType;

    Order(String orderType) {
        this.orderType = orderType;
    }

    public String getOrderType() {
        return orderType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy