| Package | Description |
|---|---|
| org.teasoft.bee.osql |
Function about Object SQL.
|
| org.teasoft.bee.osql.chain |
Interface for SQL with chain programming.
|
| org.teasoft.bee.osql.service |
Interface and class about service layer.
|
| Modifier and Type | Method and Description |
|---|---|
static OrderType |
OrderType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrderType[] |
OrderType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
Condition |
Condition.orderBy(FunctionType functionType,
String field,
OrderType orderType)
order by
eg: orderBy(FunctionType.MAX, "total", OrderType.DESC)-->order by max(total) desc |
Condition |
Condition.orderBy(String field,
OrderType orderType)
order by
eg: orderBy("price", OrderType.DESC)-->order by price desc |
<T> List<T> |
SuidRich.selectOrderBy(T entity,
String orderFields,
OrderType[] orderTypes)
Select result with order.
|
<T> String |
ObjToSQLRich.toSelectOrderBySQL(T entity,
String orderFields,
OrderType[] orderTypes) |
| Modifier and Type | Method and Description |
|---|---|
Select |
Select.orderBy(String field,
OrderType orderType) |
| Modifier and Type | Method and Description |
|---|---|
<T> List<T> |
ObjSQLRichAbstractServiceImpl.selectOrderBy(T entity,
String orderFieldList,
OrderType[] orderTypes) |
Copyright © 2022. All rights reserved.