static enum InjectorImpl.JitLimitation extends java.lang.Enum<InjectorImpl.JitLimitation>
Enum Constant and Description |
---|
EXISTING_JIT
allows existing just in time bindings, but does not allow new ones
|
NEW_OR_EXISTING_JIT
allows existing just in time bindings & allows new ones to be created
|
NO_JIT
does not allow just in time bindings
|
Modifier and Type | Method and Description |
---|---|
static InjectorImpl.JitLimitation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InjectorImpl.JitLimitation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InjectorImpl.JitLimitation NO_JIT
public static final InjectorImpl.JitLimitation EXISTING_JIT
public static final InjectorImpl.JitLimitation NEW_OR_EXISTING_JIT
public static InjectorImpl.JitLimitation[] values()
for (InjectorImpl.JitLimitation c : InjectorImpl.JitLimitation.values()) System.out.println(c);
public static InjectorImpl.JitLimitation 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