public enum MemoryPolicy extends Enum<MemoryPolicy>
| Enum Constant and Description |
|---|
NO_CACHE
Skips memory cache lookup when processing a request.
|
NO_STORE
Skips storing the final result into memory cache.
|
| Modifier and Type | Method and Description |
|---|---|
static MemoryPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MemoryPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MemoryPolicy NO_CACHE
public static final MemoryPolicy NO_STORE
public static MemoryPolicy[] values()
for (MemoryPolicy c : MemoryPolicy.values()) System.out.println(c);
public static MemoryPolicy 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 © 2013–2016 Square, Inc.. All rights reserved.