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