Enum Class ActivationStatus

java.lang.Object
java.lang.Enum<ActivationStatus>
io.helidon.inject.api.ActivationStatus
All Implemented Interfaces:
Serializable, Comparable<ActivationStatus>, Constable

public enum ActivationStatus extends Enum<ActivationStatus>
The activation status. This status applies to the ActivationLogEntry record.
See Also:
  • Enum Constant Details

    • SUCCESS

      public static final ActivationStatus SUCCESS
      The service has been activated and is fully ready to receive requests.
    • WARNING_SUCCESS_BUT_NOT_READY

      public static final ActivationStatus WARNING_SUCCESS_BUT_NOT_READY
      The service has been activated but is still being started asynchronously, and is not fully ready yet to receive requests. Important note: This is NOT health related - Health is orthogonal to service bindings/activation and readiness.
    • WARNING_GENERAL

      public static final ActivationStatus WARNING_GENERAL
      A general warning during lifecycle.
    • FAILURE

      public static final ActivationStatus FAILURE
      Failed to activate to the given phase.
  • Method Details

    • values

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