mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.7 KiB
Java
65 lines
1.7 KiB
Java
/**
|
|
* Copyright (c) 2012 Todoroo Inc
|
|
*
|
|
* See the file "LICENSE" for the full license governing this code.
|
|
*/
|
|
package com.todoroo.andlib.sql;
|
|
|
|
import static com.todoroo.andlib.sql.SqlConstants.SPACE;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class Order {
|
|
private final Object expression;
|
|
private final List<Order> secondaryExpressions;
|
|
private final OrderType orderType;
|
|
|
|
private Order(Object expression) {
|
|
this(expression, OrderType.ASC);
|
|
}
|
|
|
|
private Order(Object expression, OrderType orderType) {
|
|
this.expression = expression;
|
|
this.orderType = orderType;
|
|
this.secondaryExpressions = new ArrayList<Order>();
|
|
}
|
|
|
|
public static Order asc(Object expression) {
|
|
return new Order(expression);
|
|
}
|
|
|
|
public static Order desc(Object expression) {
|
|
return new Order(expression, OrderType.DESC);
|
|
}
|
|
|
|
public void addSecondaryExpression(Order secondary) {
|
|
secondaryExpressions.add(secondary);
|
|
}
|
|
|
|
public void removeSecondaryExpression(Order secondary) {
|
|
secondaryExpressions.remove(secondary);
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append(expression.toString())
|
|
.append(SPACE)
|
|
.append(orderType.toString());
|
|
|
|
for (Order secondary : secondaryExpressions) {
|
|
sb.append(", ").append(secondary.toString()); //$NON-NLS-1$
|
|
}
|
|
|
|
return sb.toString();
|
|
}
|
|
|
|
public Order reverse() {
|
|
if(orderType == OrderType.ASC)
|
|
return new Order(expression, OrderType.DESC);
|
|
else
|
|
return new Order(expression, OrderType.ASC);
|
|
}
|
|
}
|