public enum FetchRequest extends java.lang.Enum<FetchRequest>
| Enum Constant and Description |
|---|
COMPRESS
Return compressed buffer and store in region if required.
|
DECOMPRESS
Return decompressed buffer and store in region if possible.
|
DECOMPRESS_IF_IN_MEMORY
Return decompressed buffer only if decompressed form can be stored
in memory (i.e.
|
ORIGINAL
Return with original form of buffer.
|
| Modifier and Type | Method and Description |
|---|---|
static FetchRequest |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FetchRequest[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FetchRequest ORIGINAL
public static final FetchRequest DECOMPRESS
public static final FetchRequest COMPRESS
public static final FetchRequest DECOMPRESS_IF_IN_MEMORY
ORIGINAL in case result is null.public static FetchRequest[] values()
for (FetchRequest c : FetchRequest.values()) System.out.println(c);
public static FetchRequest 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 nullCopyright © 2010-2015 Pivotal Software, Inc. All rights reserved.