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