public enum ProductFeatureStatus extends java.lang.Enum<ProductFeatureStatus>
Typically the product lifecycle of a feature would go from EXPERIMENTAL -> SUPPORTED -> DEPRECATED -> UNSUPPORTED
Enum Constant and Description |
---|
DEPRECATED
This feature is deprecated and it is highly likely that this feature may become
unsupported in future releases.
|
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.
|
UNSUPPORTED
This feature is no longer supported and its use in production system is highly discouraged.
|
Modifier and Type | Method and Description |
---|---|
static ProductFeatureStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProductFeatureStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProductFeatureStatus EXPERIMENTAL
public static final ProductFeatureStatus SUPPORTED
public static final ProductFeatureStatus DEPRECATED
public static final ProductFeatureStatus UNSUPPORTED
public static ProductFeatureStatus[] values()
for (ProductFeatureStatus c : ProductFeatureStatus.values()) System.out.println(c);
public static ProductFeatureStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null