public enum InstantiationStrategy extends java.lang.Enum<InstantiationStrategy>
Enum Constant and Description |
---|
KEEP_ALIVE |
PER_LOOKUP |
POOLABLE |
SINGLETON |
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
id |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
id() |
static InstantiationStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InstantiationStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstantiationStrategy PER_LOOKUP
public static final InstantiationStrategy SINGLETON
public static final InstantiationStrategy KEEP_ALIVE
public static final InstantiationStrategy POOLABLE
public static InstantiationStrategy[] values()
for (InstantiationStrategy c : InstantiationStrategy.values()) System.out.println(c);
public static InstantiationStrategy 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 nullpublic java.lang.String id()