Android Open Source - Todo Sort






From Project

Back to project page Todo.

License

The source code is released under:

GNU General Public License

If you think the Android project Todo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/**
 * This file is part of Todo.txt for Android, an app for managing your todo.txt file (http://todotxt.com).
 */*w w  w. ja va  2  s  .co  m*/
 * Copyright (c) 2009-2013 Todo.txt for Android contributors (http://todotxt.com)
 *
 * LICENSE:
 *
 * Todo.txt for Android is free software: you can redistribute it and/or modify it under the terms of the GNU General
 * Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any
 * later version.
 *
 * Todo.txt for Android is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the 
 * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
 * details.
 *
 * You should have received a copy of the GNU General Public License along with Todo.txt for Android. If not, see
 * <http://www.gnu.org/licenses/>.
 *
 * Todo.txt for Android's source code is available at https://github.com/ginatrapani/todo.txt-android
 *
 * @author Todo.txt for Android contributors <todotxt@yahoogroups.com>
 * @license http://www.gnu.org/licenses/gpl.html
 * @copyright 2009-2013 Todo.txt for Android contributors (http://todotxt.com)
 */

package com.todotxt.todotxttouch.task;

import java.util.Comparator;

public enum Sort {
  /**
   * Priority descending sort should result in Tasks in the following order
   * <p>
   * (A), (B), (C), ..., (Z), (NO PRIORITY), (COMPLETED)
   * </p>
   * <p>
   * If tasks are of the same priority level, they are sorted by task id
   * ascending
   * </p>
   */
  PRIORITY_DESC(0, new Comparator<Task>() {
    @Override
    public int compare(Task t1, Task t2) {
      if ((t1 == null) || (t2 == null)) {
        throw new NullPointerException("Null task passed into comparator");
      }

      int result = t1.getSortPriority().compareTo(t2.getSortPriority());

      if (result != 0) {
        return result;
      }

      return Sort.ID_ASC.getComparator().compare(t1, t2);
    }
  }
  ),

  /**
   * Id ascending sort should result in Tasks in the following order
   * <p>
   * 1, 2, 3, 4, ..., n
   * </p>
   */
  ID_ASC(1, new Comparator<Task>() {
    @Override
    public int compare(Task t1, Task t2) {
      if ((t1 == null) || (t2 == null)) {
        throw new NullPointerException("Null task passed into comparator");
      }

      return ((Long) t1.getId()).compareTo((Long) t2.getId());
    }
  }
  ),

  /**
   * Id descending sort should result in Tasks in the following order
   * <p>
   * n, ..., 4, 3, 2, 1
   * </p>
   */
  ID_DESC(2, new Comparator<Task>() {
    @Override
    public int compare(Task t1, Task t2) {
      if ((t1 == null) || (t2 == null)) {
        throw new NullPointerException("Null task passed into comparator");
      }

      return ((Long) t2.getId()).compareTo((Long) t1.getId());
    }
  }
  ),

  /**
   * Text ascending sort should result in Tasks sorting in the following order
   * <p>
   * (incomplete) a, b, c, d, e, ..., z, (completed) a, b, c, d, e, ..., z
   * </p>
   * <p>
   * If tasks are of the same text (and completion) value, they are sorted by
   * task id ascending
   * </p>
   */
  TEXT_ASC(3, new Comparator<Task>() {
    @Override
    public int compare(Task t1, Task t2) {
      if ((t1 == null) || (t2 == null)) {
        throw new NullPointerException("Null task passed into comparator");
      }

      int result = ((Boolean) t1.isCompleted()).compareTo((Boolean) t2.isCompleted());

      if (result != 0) {
        return result;
      }

      result = t1.getText().compareToIgnoreCase(t2.getText());

      if (result != 0) {
        return result;
      }

      return Sort.ID_ASC.getComparator().compare(t1, t2);
    }
  }
  ),

  /**
   * Date ascending sort should result in Tasks ordered by creation date,
   * earliest first. Tasks with no creation date will be sorted by line number
   * in ascending order after those with a date. Followed finally by completed
   * tasks.
   * <p>
   * If tasks are of the same date sort level, they are sorted by task id
   * ascending
   * </p>
   */
  DATE_ASC(4, new Comparator<Task>() {
    @Override
    public int compare(Task t1, Task t2) {
      if ((t1 == null) || (t2 == null)) {
        throw new NullPointerException("Null task passed into comparator");
      }

      int result = t1.getAscSortDate().compareTo(t2.getAscSortDate());

      if (result != 0) {
        return result;
      }

      return Sort.ID_ASC.getComparator().compare(t1, t2);
    }
  }
  ),

  /**
   * Date descending sort should result in Tasks ordered by creation date,
   * most recent first. Tasks with no creation date will be sorted by line
   * number in descending order before all tasks with dates.
   * <p>
   * If tasks are of the same date level, they are sorted by task id
   * descending
   * </p>
   */
  DATE_DESC(5, new Comparator<Task>() {
    @Override
    public int compare(Task t1, Task t2) {
      if ((t1 == null) || (t2 == null)) {
        throw new NullPointerException("Null task passed into comparator");
      }

      int result = t2.getDescSortDate().compareTo(t1.getDescSortDate());

      if (result != 0) {
        return result;
      }

      return Sort.ID_DESC.getComparator().compare(t1, t2);
    }
  }
  );

  private final int id;
  private final Comparator<Task> comparator;

  private Sort(int id, Comparator<Task> comparator) {
    this.id = id;
    this.comparator = comparator;
  }

  /**
   * Retrieves the sort selection by its id, default to PRIORITY_DESC if no
   * matching sort is found
   * @param id the sort id to lookup
   * @return the matching sort or PRIORITY_DESC if no match is found
   */
  public static Sort getById(int id) {
    for (Sort sort : Sort.values()) {
      if (sort.id == id) {
        return sort;
      }
    }

    return Sort.PRIORITY_DESC;
  }

  public int getId() {
    return id;
  }

  public Comparator<Task> getComparator() {
    return comparator;
  }
}




Java Source Code List

.MainActivity.java
com.todotxt.todotxttouch.AddTask.java
com.todotxt.todotxttouch.Constants.java
com.todotxt.todotxttouch.HelpActivity.java
com.todotxt.todotxttouch.PeriodicSyncStarter.java
com.todotxt.todotxttouch.Preferences.java
com.todotxt.todotxttouch.RelativeLayoutCheckable.java
com.todotxt.todotxttouch.SyncerService.java
com.todotxt.todotxttouch.TodoApplication.java
com.todotxt.todotxttouch.TodoException.java
com.todotxt.todotxttouch.TodoLocationPreference.java
com.todotxt.todotxttouch.TodoPreferences.java
com.todotxt.todotxttouch.TodoTxtTouch.java
com.todotxt.todotxttouch.TodoWidgetProvider.java
com.todotxt.todotxttouch.UpgradeHandler.java
com.todotxt.todotxttouch.remote.Client.java
com.todotxt.todotxttouch.remote.PullTodoResult.java
com.todotxt.todotxttouch.remote.RemoteClientManager.java
com.todotxt.todotxttouch.remote.RemoteClient.java
com.todotxt.todotxttouch.remote.RemoteConflictException.java
com.todotxt.todotxttouch.remote.RemoteException.java
com.todotxt.todotxttouch.remote.RemoteFolderImpl.java
com.todotxt.todotxttouch.remote.RemoteFolder.java
com.todotxt.todotxttouch.task.AndFilter.java
com.todotxt.todotxttouch.task.ByContextFilter.java
com.todotxt.todotxttouch.task.ByPriorityFilter.java
com.todotxt.todotxttouch.task.ByProjectFilter.java
com.todotxt.todotxttouch.task.ByTextFilter.java
com.todotxt.todotxttouch.task.ContextParser.java
com.todotxt.todotxttouch.task.EndpointsTaskBagImpl.java
com.todotxt.todotxttouch.task.FilterFactory.java
com.todotxt.todotxttouch.task.Filter.java
com.todotxt.todotxttouch.task.LinkParser.java
com.todotxt.todotxttouch.task.LocalFileTaskRepository.java
com.todotxt.todotxttouch.task.LocalTaskRepository.java
com.todotxt.todotxttouch.task.MailAddressParser.java
com.todotxt.todotxttouch.task.OrFilter.java
com.todotxt.todotxttouch.task.PhoneNumberParser.java
com.todotxt.todotxttouch.task.PriorityTextSplitter.java
com.todotxt.todotxttouch.task.Priority.java
com.todotxt.todotxttouch.task.ProjectParser.java
com.todotxt.todotxttouch.task.Sort.java
com.todotxt.todotxttouch.task.TaskBagFactory.java
com.todotxt.todotxttouch.task.TaskBagImpl.java
com.todotxt.todotxttouch.task.TaskBag.java
com.todotxt.todotxttouch.task.TaskPersistException.java
com.todotxt.todotxttouch.task.Task.java
com.todotxt.todotxttouch.task.TextSplitter.java
com.todotxt.todotxttouch.util.CursorPositionCalculator.java
com.todotxt.todotxttouch.util.Path.java
com.todotxt.todotxttouch.util.RelativeDate.java
com.todotxt.todotxttouch.util.Strings.java
com.todotxt.todotxttouch.util.TaskIo.java
com.todotxt.todotxttouch.util.Tree.java
com.todotxt.todotxttouch.util.Util.java
com.todotxt.todotxttouch.widget.ListWidgetProvider.java
com.todotxt.todotxttouch.widget.ListWidgetService.java
de.timroes.swipetodismiss.SwipeDismissList.java
uk.co.senab.actionbarpulltorefresh.extras.actionbarsherlock.AbsDefaultHeaderTransformer.java
uk.co.senab.actionbarpulltorefresh.extras.actionbarsherlock.PullToRefreshAttacher.java
uk.co.senab.actionbarpulltorefresh.library.DefaultHeaderTransformer.java
uk.co.senab.actionbarpulltorefresh.library.InstanceCreationUtils.java
uk.co.senab.actionbarpulltorefresh.library.PullToRefreshAttacher.java
uk.co.senab.actionbarpulltorefresh.library.PullToRefreshLayout.java
uk.co.senab.actionbarpulltorefresh.library.viewdelegates.AbsListViewDelegate.java
uk.co.senab.actionbarpulltorefresh.library.viewdelegates.ScrollYDelegate.java
uk.co.senab.actionbarpulltorefresh.library.viewdelegates.WebViewDelegate.java
voodsingular.todo.MyEndpointEndpoint.java
voodsingular.todo.MyEndpoint.java
voodsingular.todo.TaskBean.java