java.lang.Object
java.lang.Enum<FeatureStatus>
io.helidon.common.features.metadata.FeatureStatus
All Implemented Interfaces:
Serializable, Comparable<FeatureStatus>, Constable

public enum FeatureStatus extends Enum<FeatureStatus>
Supported Feature states.
  • Enum Constant Details

    • INCUBATING

      public static final FeatureStatus INCUBATING
      Incubating features may be changed including backward incompatible changes in between any version of Helidon. Incubating features are NOT production ready features, and may be removed at discretion of Helidon team.
    • PREVIEW

      public static final FeatureStatus PREVIEW
      Preview feature may be changed including backward incompatible changes in between minor versions of Helidon. Preview features are considered production ready features.
    • PRODUCTION

      public static final FeatureStatus PRODUCTION
      Production ready feature honoring semantic versioning.
    • DEPRECATED

      public static final FeatureStatus DEPRECATED
      Deprecated feature, will be removed in a future major version of Helidon (if previous state was PRODUCTION or PREVIEW, or next minor version of Helidon (if previous state was INCUBATING).
  • Method Details

    • values

      public static FeatureStatus[] 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 FeatureStatus 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