com.darwinsys.todo.model.Status Maven / Gradle / Ivy
package com.darwinsys.todo.model;
/** Enumerate the status that a ToDo can be in. */
public enum Status {
NEW,
ACTIVE,
DEFERRED,
COMPLETE;
}
package com.darwinsys.todo.model;
/** Enumerate the status that a ToDo can be in. */
public enum Status {
NEW,
ACTIVE,
DEFERRED,
COMPLETE;
}