Enum Class FeatureFlag.FeatureName

java.lang.Object
java.lang.Enum<FeatureFlag.FeatureName>
google.registry.model.common.FeatureFlag.FeatureName
All Implemented Interfaces:
Serializable, Comparable<FeatureFlag.FeatureName>, Constable
Enclosing class:
FeatureFlag

public static enum FeatureFlag.FeatureName extends Enum<FeatureFlag.FeatureName>
The names of the feature flags that can be individually set.
  • Enum Constant Details

    • TEST_FEATURE

      public static final FeatureFlag.FeatureName TEST_FEATURE
      Feature flag name used for testing only.
    • MINIMUM_DATASET_CONTACTS_OPTIONAL

      public static final FeatureFlag.FeatureName MINIMUM_DATASET_CONTACTS_OPTIONAL
      If we're not requiring the presence of contact data on domain EPP commands.
    • MINIMUM_DATASET_CONTACTS_PROHIBITED

      public static final FeatureFlag.FeatureName MINIMUM_DATASET_CONTACTS_PROHIBITED
      If we're not permitting the presence of contact data on any EPP commands.
    • INCLUDE_PENDING_DELETE_DATE_FOR_DOMAINS

      public static final FeatureFlag.FeatureName INCLUDE_PENDING_DELETE_DATE_FOR_DOMAINS
      If we're including the upcoming domain drop date in the exported list of registered domains.
  • Method Details

    • values

      public static FeatureFlag.FeatureName[] 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 FeatureFlag.FeatureName 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