public enum ObjectStoreWatchOption extends java.lang.Enum<ObjectStoreWatchOption>
| Enum Constant and Description |
|---|
IGNORE_DELETE
Do not include deletes or purges in results.
|
INCLUDE_HISTORY
Watch starting at the first entry for all keys.
|
UPDATES_ONLY
Watch starting when there are new entries for keys.
|
| Modifier and Type | Method and Description |
|---|---|
static ObjectStoreWatchOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjectStoreWatchOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectStoreWatchOption IGNORE_DELETE
public static final ObjectStoreWatchOption INCLUDE_HISTORY
public static final ObjectStoreWatchOption UPDATES_ONLY
public static ObjectStoreWatchOption[] values()
for (ObjectStoreWatchOption c : ObjectStoreWatchOption.values()) System.out.println(c);
public static ObjectStoreWatchOption 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