public enum RedisKeyType extends Enum<RedisKeyType>
| Enum Constant and Description |
|---|
PRIMARY
Enum value Primary.
|
SECONDARY
Enum value Secondary.
|
| Modifier and Type | Method and Description |
|---|---|
static RedisKeyType |
fromString(String value)
Parses a serialized value to a RedisKeyType instance.
|
String |
toString() |
static RedisKeyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedisKeyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RedisKeyType PRIMARY
public static final RedisKeyType SECONDARY
public static RedisKeyType[] values()
for (RedisKeyType c : RedisKeyType.values()) System.out.println(c);
public static RedisKeyType 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 nullpublic static RedisKeyType fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<RedisKeyType>Copyright © 2019. All rights reserved.