public static enum RedisKeyValueAdapter.ShadowCopy extends Enum<RedisKeyValueAdapter.ShadowCopy>
RedisKeyspaceEvent.| Enum Constant and Description |
|---|
DEFAULT
Store shadow copies of expiring entities depending on the
RedisKeyValueAdapter.EnableKeyspaceEvents. |
OFF
Do not store shadow copies.
|
ON
Store shadow copies of expiring entities.
|
| Modifier and Type | Method and Description |
|---|---|
static RedisKeyValueAdapter.ShadowCopy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedisKeyValueAdapter.ShadowCopy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RedisKeyValueAdapter.ShadowCopy DEFAULT
RedisKeyValueAdapter.EnableKeyspaceEvents.public static final RedisKeyValueAdapter.ShadowCopy ON
public static final RedisKeyValueAdapter.ShadowCopy OFF
public static RedisKeyValueAdapter.ShadowCopy[] values()
for (RedisKeyValueAdapter.ShadowCopy c : RedisKeyValueAdapter.ShadowCopy.values()) System.out.println(c);
public static RedisKeyValueAdapter.ShadowCopy 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 © 2011–2022 Pivotal Software, Inc.. All rights reserved.