public enum ComponentState extends java.lang.Enum<ComponentState>
Enum Constant and Description |
---|
INJECTED
インジェクション完了。
|
INJECTING
インジェクション実施中。
|
INJECTION_FAILED
インジェクション失敗。
|
INSTANTIATED
インスタンス化完了。
|
INSTANTIATING
インスタンス化中。
|
NOT_INSTANTIATE
インスタンス生成前。
|
Modifier and Type | Method and Description |
---|---|
static ComponentState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ComponentState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComponentState NOT_INSTANTIATE
public static final ComponentState INSTANTIATING
public static final ComponentState INSTANTIATED
public static final ComponentState INJECTING
public static final ComponentState INJECTED
public static final ComponentState INJECTION_FAILED
public static ComponentState[] values()
for (ComponentState c : ComponentState.values()) System.out.println(c);
public static ComponentState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null