public static enum CachingConnectionFactory.CacheMode extends Enum<CachingConnectionFactory.CacheMode>
Enum Constant and Description |
---|
CHANNEL
Cache channels - single connection.
|
CONNECTION
Cache connections and channels within each connection.
|
Modifier and Type | Method and Description |
---|---|
static CachingConnectionFactory.CacheMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CachingConnectionFactory.CacheMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CachingConnectionFactory.CacheMode CHANNEL
public static final CachingConnectionFactory.CacheMode CONNECTION
public static CachingConnectionFactory.CacheMode[] values()
for (CachingConnectionFactory.CacheMode c : CachingConnectionFactory.CacheMode.values()) System.out.println(c);
public static CachingConnectionFactory.CacheMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null