Package google.registry.model.common
Enum Class FeatureFlag.FeatureName
- All Implemented Interfaces:
Serializable
,Comparable<FeatureFlag.FeatureName>
,Constable
- Enclosing class:
FeatureFlag
The names of the feature flags that can be individually set.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIf we're including the upcoming domain drop date in the exported list of registered domains.If we're not requiring the presence of contact data on domain EPP commands.If we're not permitting the presence of contact data on any EPP commands.Feature flag name used for testing only. -
Method Summary
Modifier and TypeMethodDescriptionstatic FeatureFlag.FeatureName
Returns the enum constant of this class with the specified name.static FeatureFlag.FeatureName[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TEST_FEATURE
Feature flag name used for testing only. -
MINIMUM_DATASET_CONTACTS_OPTIONAL
If we're not requiring the presence of contact data on domain EPP commands. -
MINIMUM_DATASET_CONTACTS_PROHIBITED
If we're not permitting the presence of contact data on any EPP commands. -
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
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
-