
net.cassite.daf4j.OrderBase 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;
/**
* 排序依据
*/
public class OrderBase {
/**
* 排序依据,定义在OrderType中
*
* @see OrderTypes
*/
public final OrderTypes type;
/**
* 排序字段
*/
public final IData> data;
OrderBase(OrderTypes type, IData> data) {
this.type = type;
this.data = data;
}
@Override
public boolean equals(Object o) {
return (o instanceof OrderBase) && (this.type == ((OrderBase) o).type && this.data.equals(((OrderBase) o).data));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy