Modifier and Type | Method and Description |
---|---|
CodecRegistry |
BoundStatementBuilder.codecRegistry() |
Constructor and Description |
---|
BoundStatementBuilder(PreparedStatement preparedStatement,
ColumnDefinitions variableDefinitions,
ByteBuffer[] values,
String executionProfileName,
DriverExecutionProfile executionProfile,
CqlIdentifier routingKeyspace,
ByteBuffer routingKey,
Token routingToken,
Map<String,ByteBuffer> customPayload,
Boolean idempotent,
boolean tracing,
long timestamp,
ByteBuffer pagingState,
int pageSize,
ConsistencyLevel consistencyLevel,
ConsistencyLevel serialConsistencyLevel,
Duration timeout,
CodecRegistry codecRegistry,
ProtocolVersion protocolVersion) |
Modifier and Type | Method and Description |
---|---|
CodecRegistry |
Data.codecRegistry()
Returns the registry of all the codecs currently available to convert values for this instance.
|
Modifier and Type | Method and Description |
---|---|
CodecRegistry |
AttachmentPoint.getCodecRegistry()
Note that the default registry implementation returned by the driver also implements
MutableCodecRegistry , which allows you to register new codecs at runtime. |
Modifier and Type | Interface and Description |
---|---|
interface |
MutableCodecRegistry
A codec registry that can be extended with new user codecs at runtime.
|
Modifier and Type | Field and Description |
---|---|
static CodecRegistry |
CodecRegistry.DEFAULT
An immutable instance, that only handles built-in driver types (that is, primitive types, and
collections, tuples, and user defined types thereof).
|
Modifier and Type | Method and Description |
---|---|
static Literal |
QueryBuilder.literal(Object value,
CodecRegistry codecRegistry)
A literal term, as in
WHERE k = 1 . |
Modifier and Type | Method and Description |
---|---|
default JsonInsert |
InsertInto.json(Object value,
CodecRegistry codecRegistry)
Makes this statement an INSERT JSON with a custom type mapping.
|
Modifier and Type | Method and Description |
---|---|
default Select |
OngoingSelection.literal(Object value,
CodecRegistry codecRegistry)
Selects a literal value, as in
WHERE k = 1 . |
Copyright © 2017–2020. All rights reserved.