public static enum StatementBuilder.ParameterHandling extends Enum<StatementBuilder.ParameterHandling>
| Enum Constant and Description |
|---|
BY_INDEX
Index-based bind markers.
|
BY_NAME
Named bind markers.
|
INLINE
CQL inline rendering as literals.
|
| Modifier and Type | Method and Description |
|---|---|
static StatementBuilder.ParameterHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatementBuilder.ParameterHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatementBuilder.ParameterHandling INLINE
public static final StatementBuilder.ParameterHandling BY_INDEX
public static final StatementBuilder.ParameterHandling BY_NAME
public static StatementBuilder.ParameterHandling[] values()
for (StatementBuilder.ParameterHandling c : StatementBuilder.ParameterHandling.values()) System.out.println(c);
public static StatementBuilder.ParameterHandling 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 © 2011–2021 Pivotal Software, Inc.. All rights reserved.