public enum CacheError extends java.lang.Enum<CacheError>
| Modifier and Type | Method and Description |
|---|---|
static CacheError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CacheError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CacheError FILE_IO_ERROR
public static final CacheError FILE_NOT_FOUND
public static final CacheError FILE_ALREADY_CACHING
public static final CacheError NOT_CACHING
public static final CacheError JSON_ERROR
public static final CacheError NO_INTERNET
public static final CacheError MALFORMED_URL
public static final CacheError NETWORK_ERROR
public static final CacheError ILLEGAL_STATE
public static final CacheError INVALID_ARGUMENT
public static final CacheError UNSUPPORTED_ENCODING
public static final CacheError FILE_STATE_WRONG
public static final CacheError CACHE_DIRECTORY_NULL
public static final CacheError CACHE_DIRECTORY_TYPE_NULL
public static final CacheError CACHE_DIRECTORY_EXISTS
public static final CacheError CACHE_DIRECTORY_DOESNT_EXIST
public static final CacheError UNKNOWN_ERROR
public static CacheError[] values()
for (CacheError c : CacheError.values()) System.out.println(c);
public static CacheError 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