public enum MemoryCacheSolution extends Enum<MemoryCacheSolution>
| Enum Constant and Description |
|---|
Redis |
StaticMemory |
| Modifier and Type | Method and Description |
|---|---|
static MemoryCacheSolution |
convert(int value) |
int |
getTypeValue() |
static MemoryCacheSolution |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MemoryCacheSolution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MemoryCacheSolution StaticMemory
public static final MemoryCacheSolution Redis
public static MemoryCacheSolution[] values()
for (MemoryCacheSolution c : MemoryCacheSolution.values()) System.out.println(c);
public static MemoryCacheSolution 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 int getTypeValue()
public static MemoryCacheSolution convert(int value)
Copyright © 2016. All rights reserved.