Enum Class Event

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

@Deprecated(forRemoval=true, since="4.0.8") public enum Event extends Enum<Event>
Deprecated, for removal: This API element is subject to removal in a future version.
Helidon inject is deprecated and will be replaced in a future version
A lifecycle activation event.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
    Finished.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Other, informational.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Starting.
  • Method Summary

    Modifier and Type
    Method
    Description
    static Event
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns the enum constant of this class with the specified name.
    static Event[]
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • STARTING

      public static final Event STARTING
      Deprecated, for removal: This API element is subject to removal in a future version.
      Starting.
    • FINISHED

      public static final Event FINISHED
      Deprecated, for removal: This API element is subject to removal in a future version.
      Finished.
    • OTHER

      public static final Event OTHER
      Deprecated, for removal: This API element is subject to removal in a future version.
      Other, informational.
  • Method Details

    • values

      public static Event[] values()
      Deprecated, for removal: This API element is subject to removal in a future version.
      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 Event valueOf(String name)
      Deprecated, for removal: This API element is subject to removal in a future version.
      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