public enum ParameterConversionMode extends Enum<ParameterConversionMode>
| Enum Constant and Description |
|---|
CONVERT_ALL
Convert all parameters to custom queries via Jacksons Object Mapper.
|
CONVERT_NON_NATIVE_ONLY
Convert only non-native parameters and use the Java-Driver only.
|
| Modifier and Type | Field and Description |
|---|---|
static String |
CONFIG_PARAMETER_CONVERSION_MODE |
| Modifier and Type | Method and Description |
|---|---|
static ParameterConversionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterConversionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterConversionMode CONVERT_ALL
ObjectMapperFactory.objectMapper().public static final ParameterConversionMode CONVERT_NON_NATIVE_ONLY
public static final String CONFIG_PARAMETER_CONVERSION_MODE
public static ParameterConversionMode[] values()
for (ParameterConversionMode c : ParameterConversionMode.values()) System.out.println(c);
public static ParameterConversionMode 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 © 2015–2019 Neo Technology, Inc.. All rights reserved.