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

com.kasinf.framework.rest.eneity.BaseEnum Maven / Gradle / Ivy

The newest version!
package com.kasinf.framework.rest.eneity;

/**
 * 基础枚举对象接口,定义必须含有的字段和方法
 *
 * @author lkhsh
 */
public interface BaseEnum {

    /**
     * 枚举字段的描述
     * @return 中文描述
     */
    String getText();

    /**
     * 枚举字段的值,类型为字符串,这里是为了与origin区分
     * @return 对应的值
     */
    String getValue();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy