public static enum Maps.CacheMap.Strength extends java.lang.Enum<Maps.CacheMap.Strength>
| Modifier and Type | Method and Description | 
|---|---|
static Maps.CacheMap.Strength | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static Maps.CacheMap.Strength[] | 
values()
Returns an array containing the constants of this enum type, in the order they are declared. 
 | 
public static final Maps.CacheMap.Strength STRONG
public static final Maps.CacheMap.Strength SOFT
public static final Maps.CacheMap.Strength WEAK
public static Maps.CacheMap.Strength[] values()
for (Maps.CacheMap.Strength c : Maps.CacheMap.Strength.values())
    System.out.println(c);
public static Maps.CacheMap.Strength 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