public static enum RestProviderBase.CacheModel extends java.lang.Enum<RestProviderBase.CacheModel>
Enum Constant and Description |
---|
ALWAYS
Always use caching.
|
NOT
Doesn't use caching.
|
WHENDISCONNECTED
Caches are used when the remote Rest service loses connection.
|
Modifier and Type | Method and Description |
---|---|
static RestProviderBase.CacheModel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RestProviderBase.CacheModel[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final RestProviderBase.CacheModel NOT
public static final RestProviderBase.CacheModel ALWAYS
public static final RestProviderBase.CacheModel WHENDISCONNECTED
public static RestProviderBase.CacheModel[] values()
for (RestProviderBase.CacheModel c : RestProviderBase.CacheModel.values()) System.out.println(c);
public static RestProviderBase.CacheModel 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