public static enum RedisSessionProperties.ConfigureAction extends Enum<RedisSessionProperties.ConfigureAction>
Enum Constant and Description |
---|
NONE
No not attempt to apply any custom Redis configuration.
|
NOTIFY_KEYSPACE_EVENTS
Ensure that Redis Keyspace events for Generic commands and Expired events are
enabled.
|
Modifier and Type | Method and Description |
---|---|
static RedisSessionProperties.ConfigureAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedisSessionProperties.ConfigureAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RedisSessionProperties.ConfigureAction NOTIFY_KEYSPACE_EVENTS
public static final RedisSessionProperties.ConfigureAction NONE
public static RedisSessionProperties.ConfigureAction[] values()
for (RedisSessionProperties.ConfigureAction c : RedisSessionProperties.ConfigureAction.values()) System.out.println(c);
public static RedisSessionProperties.ConfigureAction 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 nullCopyright © 2020 Pivotal Software, Inc.. All rights reserved.