All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.webharvest.runtime.ScraperState Maven / Gradle / Ivy

The newest version!
package org.webharvest.runtime;

/**
 * An enum containing all available Scraper's states.
 *
 * @author mczapiewski
 * @since 2.1-SNAPSHOT
 * @version %I%, %G%
 */
public enum ScraperState {
    /**
     * Scraper is ready to use.
     */
    READY,
    /**
     * Scraper is running.
     */
    RUNNING,
    /**
     * Scraper has been paused.
     */
    PAUSED,
    /**
     * Scraper has successfully finished its work.
     */
    FINISHED,
    /**
     * Scraper has been stopped by the user.
     */
    STOPPED,
    /**
     * Scraper has finished its work with error.
     */
    ERROR,
    /**
     * Scraper's execution has been stopped by exit command.
     */
    EXIT,
    /**
     * Unknown state of the Scraper.
     */
    @Deprecated
    UNKNOWN
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy