Enum Class ProductFeatureStatus
- All Implemented Interfaces:
Serializable
,Comparable<ProductFeatureStatus>
,Constable
Specify lifecycle of a product feature.
Typically the product lifecycle of a feature would go from EXPERIMENTAL -> SUPPORTED -> DEPRECATED -> UNSUPPORTED
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThis feature is deprecated and it is highly likely that this feature may become unsupported in future releases.This feature is experimental and users should use caution in using this feature in production systems.This feature is supported and users can choose to use this feature in production systems.This feature is no longer supported and its use in production system is highly discouraged. -
Method Summary
Modifier and TypeMethodDescriptionstatic ProductFeatureStatus
Returns the enum constant of this class with the specified name.static ProductFeatureStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EXPERIMENTAL
This feature is experimental and users should use caution in using this feature in production systems. -
SUPPORTED
This feature is supported and users can choose to use this feature in production systems. -
DEPRECATED
This feature is deprecated and it is highly likely that this feature may become unsupported in future releases. It is not recommended to start using a deprecated feature in production systems. -
UNSUPPORTED
This feature is no longer supported and its use in production system is highly discouraged.
-
-
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
-