public enum ServiceWorkerResponseSource extends Enum<ServiceWorkerResponseSource>
| Enum Constant and Description |
|---|
CACHE_STORAGE |
FALLBACK_CODE |
HTTP_CACHE |
NETWORK |
| Modifier and Type | Method and Description |
|---|---|
static ServiceWorkerResponseSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceWorkerResponseSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceWorkerResponseSource CACHE_STORAGE
public static final ServiceWorkerResponseSource HTTP_CACHE
public static final ServiceWorkerResponseSource FALLBACK_CODE
public static final ServiceWorkerResponseSource NETWORK
public static ServiceWorkerResponseSource[] values()
for (ServiceWorkerResponseSource c : ServiceWorkerResponseSource.values()) System.out.println(c);
public static ServiceWorkerResponseSource 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 nullCopyright © 2021 Kenan Klisura. All rights reserved.