Package | Description |
---|---|
com.datastax.dse.driver.api.querybuilder.schema |
This package effectively mirrors the Cassandra OSS Schema interfaces to allow extended schema and
query building for the DSE driver.
|
com.datastax.dse.driver.internal.querybuilder.schema |
This package effectively mirrors the Cassandra OSS default query and schema implementations to
allow extended schema and query building for the DSE driver.
|
Modifier and Type | Method and Description |
---|---|
CreateDseFunctionWithType |
CreateDseFunctionWithType.deterministic()
Adds "DETERMINISTIC" to create function specification.
|
CreateDseFunctionWithType |
CreateDseFunctionWithType.monotonic()
Adds "MONOTONIC" to create function specification.
|
CreateDseFunctionWithType |
CreateDseFunctionWithType.monotonicOn(com.datastax.oss.driver.api.core.CqlIdentifier monotonicColumn)
Adds "MONOTONIC ON" to create function specification.
|
default CreateDseFunctionWithType |
CreateDseFunctionWithType.monotonicOn(String monotonicColumn)
Shortcut for
monotonicOn(CqlIdentifier.fromCql(monotonicColumn)) . |
CreateDseFunctionWithType |
CreateDseFunctionWithNullOption.returnsType(com.datastax.oss.driver.api.core.type.DataType dataType)
Adds RETURNS to the create function specification.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultCreateDseFunction
Implements DSE extended interfaces for creating functions.
|
Modifier and Type | Method and Description |
---|---|
CreateDseFunctionWithType |
DefaultCreateDseFunction.deterministic() |
CreateDseFunctionWithType |
DefaultCreateDseFunction.monotonic() |
CreateDseFunctionWithType |
DefaultCreateDseFunction.monotonicOn(com.datastax.oss.driver.api.core.CqlIdentifier monotonicColumn) |
CreateDseFunctionWithType |
DefaultCreateDseFunction.returnsType(com.datastax.oss.driver.api.core.type.DataType returnType) |
Copyright © 2017–2019. All rights reserved.