package com.srbenoit.filter;

/**
 * A list of possible filter states.
 */
public enum FilterState {

    /** inert state (not yet run) */
    INERT,

    /** running state */
    RUNNING,

    /** completed state */
    COMPLETED;
}
