📄 orderentry.java
字号:
package pl.criteria;
/**
* Entry for building ORDER BY clause.
* @author: Artyom Rudoy
*/
public class OrderEntry
{
private pl.map.AttributeMap attributeMap = null;
private boolean ascend = true;
/**
* OrderEntry constructor.
*/
public OrderEntry(pl.map.AttributeMap attributeMap, boolean ascend)
{
super();
this.attributeMap = attributeMap;
this.ascend = ascend;
}
/**
* Returns attribute map.
* @return pl.map.AttributeMap
*/
public pl.map.AttributeMap getAttributeMap()
{
return attributeMap;
}
/**
* Returns true if order is ascending or false if descending.
* @return boolean
*/
public boolean isAscend()
{
return ascend;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -