public enum ExperimentalFeature extends Enum<ExperimentalFeature>
ExperimentalFeature
enumeration is meant to be used with the
Experimental
annotation to indicate which feature set experimental
code belongs to.Enum Constant and Description |
---|
ALERT_CACHING
The caching of current alert information in order to reduce overall load on
the database by preventing frequent updates and JPA entity invalidation.
|
CUSTOM_SERVICE_REPOS
Support for service-specific repos for custom services
|
MULTI_SERVICE
For code that is for multi-service
|
ORPHAN_KERBEROS_IDENTITY_REMOVAL
Automatically removing Kerberos identities when a service or component is
removed.
|
PATCH_UPGRADES
Used for code that is targeted for patch upgrades
|
REFACTOR_TO_SPI
Member should be refactored to SPI project
|
Modifier and Type | Method and Description |
---|---|
static ExperimentalFeature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExperimentalFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExperimentalFeature ALERT_CACHING
public static final ExperimentalFeature PATCH_UPGRADES
public static final ExperimentalFeature MULTI_SERVICE
public static final ExperimentalFeature CUSTOM_SERVICE_REPOS
public static final ExperimentalFeature ORPHAN_KERBEROS_IDENTITY_REMOVAL
public static final ExperimentalFeature REFACTOR_TO_SPI
public static ExperimentalFeature[] values()
for (ExperimentalFeature c : ExperimentalFeature.values()) System.out.println(c);
public static ExperimentalFeature valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2022 Apache Software Foundation. All rights reserved.