MCPcopy Create free account
hub / github.com/wyouflf/xUtils3 / orderBy

Method orderBy

xutils/src/main/java/org/xutils/db/Selector.java:101–107  ·  view source on GitHub ↗

排序条件, 默认ASC

(String columnName)

Source from the content-addressed store, hash-verified

99 * 排序条件, 默认ASC
100 */
101 public Selector<T> orderBy(String columnName) {
102 if (orderByList == null) {
103 orderByList = new ArrayList<OrderBy>(5);
104 }
105 orderByList.add(new OrderBy(columnName));
106 return this;
107 }
108
109 /**
110 * 排序条件, 默认ASC

Callers 4

runMethod · 0.45
runMethod · 0.45
onTestDbClickMethod · 0.45
runMethod · 0.45

Calls 1

addMethod · 0.45

Tested by

no test coverage detected