public static enum RedisSessionProperties.ConfigureAction extends java.lang.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(java.lang.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(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