private static enum Hk2InjectionManagerFactory.Hk2InjectionManagerStrategy extends java.lang.Enum<Hk2InjectionManagerFactory.Hk2InjectionManagerStrategy>
Modifier and Type | Method and Description |
---|---|
(package private) abstract InjectionManager |
createInjectionManager(java.lang.Object parent) |
static Hk2InjectionManagerFactory.Hk2InjectionManagerStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Hk2InjectionManagerFactory.Hk2InjectionManagerStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Hk2InjectionManagerFactory.Hk2InjectionManagerStrategy IMMEDIATE
ImmediateHk2InjectionManager
public static final Hk2InjectionManagerFactory.Hk2InjectionManagerStrategy DELAYED
DelayedHk2InjectionManager
public static Hk2InjectionManagerFactory.Hk2InjectionManagerStrategy[] values()
for (Hk2InjectionManagerFactory.Hk2InjectionManagerStrategy c : Hk2InjectionManagerFactory.Hk2InjectionManagerStrategy.values()) System.out.println(c);
public static Hk2InjectionManagerFactory.Hk2InjectionManagerStrategy 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 nullabstract InjectionManager createInjectionManager(java.lang.Object parent)