public enum InternetCacheEntry extends java.lang.Enum<InternetCacheEntry>
| Enum Constant and Description |
|---|
COOKIE_CACHE_ENTRY |
EDITED_CACHE_ENTRY |
NORMAL_CACHE_ENTRY
Normal cache entry; can be deleted to recover space for new entries.
|
SPARSE_CACHE_ENTRY |
STICKY_CACHE_ENTRY |
TRACK_OFFLINE_CACHE_ENTRY |
TRACK_ONLINE_CACHE_ENTRY |
URLHISTORY_CACHE_ENTRY |
| Modifier and Type | Method and Description |
|---|---|
static InternetCacheEntry |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InternetCacheEntry[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InternetCacheEntry NORMAL_CACHE_ENTRY
public static final InternetCacheEntry STICKY_CACHE_ENTRY
public static final InternetCacheEntry EDITED_CACHE_ENTRY
public static final InternetCacheEntry TRACK_OFFLINE_CACHE_ENTRY
public static final InternetCacheEntry TRACK_ONLINE_CACHE_ENTRY
public static final InternetCacheEntry SPARSE_CACHE_ENTRY
public static final InternetCacheEntry URLHISTORY_CACHE_ENTRY
public static final InternetCacheEntry COOKIE_CACHE_ENTRY
public static InternetCacheEntry[] values()
for (InternetCacheEntry c : InternetCacheEntry.values()) System.out.println(c);
public static InternetCacheEntry 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