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