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