public static enum ApolloInterceptor.FetchSourceType extends java.lang.Enum<ApolloInterceptor.FetchSourceType>
| Enum Constant and Description |
|---|
CACHE
Response is fetched from the cache (SQLite or memory or both)
|
NETWORK
Response is fetched from the network
|
| Modifier and Type | Method and Description |
|---|---|
static ApolloInterceptor.FetchSourceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ApolloInterceptor.FetchSourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApolloInterceptor.FetchSourceType CACHE
public static final ApolloInterceptor.FetchSourceType NETWORK
public static ApolloInterceptor.FetchSourceType[] values()
for (ApolloInterceptor.FetchSourceType c : ApolloInterceptor.FetchSourceType.values()) System.out.println(c);
public static ApolloInterceptor.FetchSourceType 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