public static enum CoreQueryOptionsTransactions.ParameterPassthrough extends Enum<CoreQueryOptionsTransactions.ParameterPassthrough>
| Enum Constant and Description |
|---|
ALWAYS_SHADOWED
Ignore the original parameter and always return the shadowed.
|
DEFAULT
For primitives:
If a parameter has been set in the shadow then return that, otherwise return the original's version.
|
| Modifier and Type | Method and Description |
|---|---|
static CoreQueryOptionsTransactions.ParameterPassthrough |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoreQueryOptionsTransactions.ParameterPassthrough[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoreQueryOptionsTransactions.ParameterPassthrough DEFAULT
For non-primitives that are mergable (such as Lists and Maps): Merge this parameter together with the original's. For anything that's set in both, the shadow takes precedence.
public static final CoreQueryOptionsTransactions.ParameterPassthrough ALWAYS_SHADOWED
public static CoreQueryOptionsTransactions.ParameterPassthrough[] values()
for (CoreQueryOptionsTransactions.ParameterPassthrough c : CoreQueryOptionsTransactions.ParameterPassthrough.values()) System.out.println(c);
public static CoreQueryOptionsTransactions.ParameterPassthrough 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 Couchbase, Inc.. All rights reserved.