Enum Class ComponentState

java.lang.Object
java.lang.Enum<ComponentState>
nablarch.core.repository.di.ComponentState
All Implemented Interfaces:
Serializable, Comparable<ComponentState>, Constable

public enum ComponentState extends Enum<ComponentState>
コンポーネントの状態を表す列挙型。
  • Enum Constant Details

    • NOT_INSTANTIATE

      public static final ComponentState NOT_INSTANTIATE
      インスタンス生成前。
    • INSTANTIATING

      public static final ComponentState INSTANTIATING
      インスタンス化中。
    • INSTANTIATED

      public static final ComponentState INSTANTIATED
      インスタンス化完了。
    • INJECTING

      public static final ComponentState INJECTING
      インジェクション実施中。
    • INJECTED

      public static final ComponentState INJECTED
      インジェクション完了。
    • INJECTION_FAILED

      public static final ComponentState INJECTION_FAILED
      インジェクション失敗。
  • Method Details

    • values

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