Package org.codelibs.fess.helper
Enum Class CrawlerStatsHelper.StatsAction
java.lang.Object
java.lang.Enum<CrawlerStatsHelper.StatsAction>
org.codelibs.fess.helper.CrawlerStatsHelper.StatsAction
- All Implemented Interfaces:
Serializable,Comparable<CrawlerStatsHelper.StatsAction>,Constable
- Enclosing class:
CrawlerStatsHelper
Enumeration of predefined statistics actions that can be recorded
during crawler operations. Each action represents a specific event
or milestone in the crawling process.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicates that an exception occurred during URL access.Indicates that a URL was successfully accessed.Indicates that a child URL was discovered.Indicates that multiple child URLs were discovered.Indicates that a URL was evaluated for crawling eligibility.Indicates that a general exception occurred during processing.Indicates that processing of a URL has finished.Indicates that content was successfully parsed.Indicates that a URL was prepared for crawling.Indicates that a URL was processed completely.Indicates that a URL redirect was encountered. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static CrawlerStatsHelper.StatsAction[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ACCESSED
Indicates that a URL was successfully accessed. -
ACCESS_EXCEPTION
Indicates that an exception occurred during URL access. -
CHILD_URL
Indicates that a child URL was discovered. -
CHILD_URLS
Indicates that multiple child URLs were discovered. -
EVALUATED
Indicates that a URL was evaluated for crawling eligibility. -
EXCEPTION
Indicates that a general exception occurred during processing. -
FINISHED
Indicates that processing of a URL has finished. -
PARSED
Indicates that content was successfully parsed. -
PREPARED
Indicates that a URL was prepared for crawling. -
REDIRECTED
Indicates that a URL redirect was encountered. -
PROCESSED
Indicates that a URL was processed completely.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-