Enum Class RefreshStage

java.lang.Object
java.lang.Enum<RefreshStage>
google.registry.bsa.RefreshStage
All Implemented Interfaces:
Serializable, Comparable<RefreshStage>, Constable

public enum RefreshStage extends Enum<RefreshStage>
  • Enum Constant Details

    • CHECK_FOR_CHANGES

      public static final RefreshStage CHECK_FOR_CHANGES
      Checks for stale unblockable domains. The output is a stream of UnblockableDomainChange objects that describe the stale domains.
    • APPLY_CHANGES

      public static final RefreshStage APPLY_CHANGES
      Fixes the stale domains in the database.
    • UPLOAD_REMOVALS

      public static final RefreshStage UPLOAD_REMOVALS
      Reports the unblockable domains to be removed to BSA.
    • UPLOAD_ADDITIONS

      public static final RefreshStage UPLOAD_ADDITIONS
      Reports the newly found unblockable domains to BSA.
    • DONE

      public static final RefreshStage DONE
  • Method Details

    • values

      public static RefreshStage[] 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

      public static RefreshStage valueOf(String name)
      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 name
      NullPointerException - if the argument is null