
net.cassite.daf4j.IDataOrdered Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of daf4j-api Show documentation
Show all versions of daf4j-api Show documentation
A library provides facade api for data accessing.
The newest version!
package net.cassite.daf4j;
import net.cassite.daf4j.IData;
import net.cassite.daf4j.OrderBase;
/**
* 可进行排序的字段
*
* @param 字段实际类型
*/
public interface IDataOrdered extends IData {
/**
* 进行排序操作时使用降序
*
* @return 排序依据
*/
OrderBase desc();
/**
* 进行排序操作时使用升序
*
* @return 排序依据
*/
OrderBase asc();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy