Package google.registry.bsa
Enum Class RefreshStage
- All Implemented Interfaces:
Serializable
,Comparable<RefreshStage>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionFixes the stale domains in the database.Checks for stale unblockable domains.Reports the newly found unblockable domains to BSA.Reports the unblockable domains to be removed to BSA. -
Method Summary
Modifier and TypeMethodDescriptionstatic RefreshStage
Returns the enum constant of this class with the specified name.static RefreshStage[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CHECK_FOR_CHANGES
Checks for stale unblockable domains. The output is a stream ofUnblockableDomainChange
objects that describe the stale domains. -
APPLY_CHANGES
Fixes the stale domains in the database. -
UPLOAD_REMOVALS
Reports the unblockable domains to be removed to BSA. -
UPLOAD_ADDITIONS
Reports the newly found unblockable domains to BSA. -
DONE
-
-
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
-