public static enum RedisCollectionFactoryBean.CollectionType extends Enum<RedisCollectionFactoryBean.CollectionType>
| Enum Constant and Description |
|---|
LIST |
MAP |
PROPERTIES |
SET |
ZSET |
| Modifier and Type | Method and Description |
|---|---|
static RedisCollectionFactoryBean.CollectionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedisCollectionFactoryBean.CollectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RedisCollectionFactoryBean.CollectionType LIST
public static final RedisCollectionFactoryBean.CollectionType SET
public static final RedisCollectionFactoryBean.CollectionType ZSET
public static final RedisCollectionFactoryBean.CollectionType MAP
public static final RedisCollectionFactoryBean.CollectionType PROPERTIES
public static RedisCollectionFactoryBean.CollectionType[] values()
for (RedisCollectionFactoryBean.CollectionType c : RedisCollectionFactoryBean.CollectionType.values()) System.out.println(c);
public static RedisCollectionFactoryBean.CollectionType 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