public interface CreateDseFunctionWithType
| Modifier and Type | Method and Description |
|---|---|
CreateDseFunctionWithType |
deterministic()
Adds "DETERMINISTIC" to create function specification.
|
CreateDseFunctionWithType |
monotonic()
Adds "MONOTONIC" to create function specification.
|
CreateDseFunctionWithType |
monotonicOn(CqlIdentifier monotonicColumn)
Adds "MONOTONIC ON" to create function specification.
|
default CreateDseFunctionWithType |
monotonicOn(String monotonicColumn)
Shortcut for
monotonicOn(CqlIdentifier.fromCql(monotonicColumn)). |
default CreateDseFunctionWithLanguage |
withJavaLanguage()
Adds "LANGUAGE java" to create function specification.
|
default CreateDseFunctionWithLanguage |
withJavaScriptLanguage()
Adds "LANGUAGE javascript" to create function specification.
|
CreateDseFunctionWithLanguage |
withLanguage(String language)
Adds LANGUAGE to the create function specification.
|
@NonNull CreateDseFunctionWithLanguage withLanguage(@NonNull String language)
@NonNull default CreateDseFunctionWithLanguage withJavaLanguage()
withLanguage("java").@NonNull default CreateDseFunctionWithLanguage withJavaScriptLanguage()
withLanguage("javascript").@NonNull CreateDseFunctionWithType deterministic()
@NonNull CreateDseFunctionWithType monotonic()
@NonNull CreateDseFunctionWithType monotonicOn(@NonNull CqlIdentifier monotonicColumn)
monotonic() instead.@NonNull default CreateDseFunctionWithType monotonicOn(@NonNull String monotonicColumn)
monotonicOn(CqlIdentifier.fromCql(monotonicColumn)).Copyright © 2017–2020. All rights reserved.