public static enum ComputeParameters.ComputeMode extends Enum<ComputeParameters.ComputeMode>
| Enum Constant and Description |
|---|
Auto
auto choose secondary index and search index
|
KV
scan kv
|
Search
Scan search
|
| Modifier and Type | Method and Description |
|---|---|
static ComputeParameters.ComputeMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComputeParameters.ComputeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComputeParameters.ComputeMode Auto
public static final ComputeParameters.ComputeMode KV
public static final ComputeParameters.ComputeMode Search
public static ComputeParameters.ComputeMode[] values()
for (ComputeParameters.ComputeMode c : ComputeParameters.ComputeMode.values()) System.out.println(c);
public static ComputeParameters.ComputeMode 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.