public enum UpdateField extends Enum<UpdateField>
| Enum Constant and Description |
|---|
CHILD_SHARDS |
HASH_KEY_RANGE |
| Modifier and Type | Method and Description |
|---|---|
static UpdateField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpdateField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateField CHILD_SHARDS
public static final UpdateField HASH_KEY_RANGE
public static UpdateField[] values()
for (UpdateField c : UpdateField.values()) System.out.println(c);
public static UpdateField 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 © 2024. All rights reserved.