package slidenerd.vivz.bucketdrops.extras;
/**
* Created by vivz on 15/12/15.
*/
public interface Constants {
String COMPLETED = "completed";
String WHEN = "when";
String POSITION = "position";
String KEY = "sort_option";
//The items whose target completion date is the nearest
int SORT_ASCENDING_DATE = 1;
//The items whose target completion date is the farthest
int SORT_DESCENDING_DATE = 2;
//The items that are complete as marked by the user
int SHOW_COMPLETE = 3;
//The items that are incomplete
int SHOW_INCOMPLETE = 4;
}