|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<MemcacheService.SetPolicy> com.google.appengine.api.memcache.MemcacheService.SetPolicy
public static enum MemcacheService.SetPolicy
Cache replacement strategies for MemcacheService.put(java.lang.Object, java.lang.Object, com.google.appengine.api.memcache.Expiration, com.google.appengine.api.memcache.MemcacheService.SetPolicy)
operations,
indicating how to handle putting a value that already exists.
Enum Constant Summary | |
---|---|
ADD_ONLY_IF_NOT_PRESENT
An additive-only strategy, useful to avoid race conditions. |
|
REPLACE_ONLY_IF_PRESENT
A replace-only strategy. |
|
SET_ALWAYS
Always stores the new value. |
Method Summary | |
---|---|
static MemcacheService.SetPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static MemcacheService.SetPolicy[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final MemcacheService.SetPolicy SET_ALWAYS
public static final MemcacheService.SetPolicy ADD_ONLY_IF_NOT_PRESENT
public static final MemcacheService.SetPolicy REPLACE_ONLY_IF_PRESENT
Method Detail |
---|
public static MemcacheService.SetPolicy[] values()
for (MemcacheService.SetPolicy c : MemcacheService.SetPolicy.values()) System.out.println(c);
public static MemcacheService.SetPolicy 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 name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |