public static enum CacheService.CacheType extends java.lang.Enum<CacheService.CacheType>
| Enum Constant and Description | 
|---|
| COUNTER_CACHE | 
| KEY_CACHE | 
| ROW_CACHE | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | toString() | 
| static CacheService.CacheType | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static CacheService.CacheType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final CacheService.CacheType KEY_CACHE
public static final CacheService.CacheType ROW_CACHE
public static final CacheService.CacheType COUNTER_CACHE
public static CacheService.CacheType[] values()
for (CacheService.CacheType c : CacheService.CacheType.values()) System.out.println(c);
public static CacheService.CacheType 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<CacheService.CacheType>Copyright © 2018 The Apache Software Foundation