com.aliyun.dc.opplat.sdk.api.enums.OrderOpEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dc-opplat-sdk-java Show documentation
Show all versions of dc-opplat-sdk-java Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
The newest version!
package com.aliyun.dc.opplat.sdk.api.enums;
/**
* @Author: 沈齐
* @Description:
* @Date: 2020/10/9
*/
public enum OrderOpEnum {
ASC("ASC", "升序排列"),
DESC("DESC", "降序排列"),
;
private String code;
private String desc;
OrderOpEnum(String code, String desc) {
this.code = code;
this.desc = desc;
}
/**
* Getter method for property code.
*
* @return property value of code
*/
public String getCode() {
return code;
}
/**
* Setter method for property code.
*
* @param code value to be assigned to property code
*/
public void setCode(String code) {
this.code = code;
}
/**
* Getter method for property desc.
*
* @return property value of desc
*/
public String getDesc() {
return desc;
}
/**
* Setter method for property desc.
*
* @param desc value to be assigned to property desc
*/
public void setDesc(String desc) {
this.desc = desc;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy