Uses of Class
com.couchbase.client.java.manager.analytics.AnalyticsDataType
-
Packages that use AnalyticsDataType Package Description com.couchbase.client.java.manager.analytics -
-
Uses of AnalyticsDataType in com.couchbase.client.java.manager.analytics
Fields in com.couchbase.client.java.manager.analytics declared as AnalyticsDataType Modifier and Type Field Description static AnalyticsDataType
AnalyticsDataType. DOUBLE
Represents the "double" data-type for an analytics field index.static AnalyticsDataType
AnalyticsDataType. INT64
Represents the "int64" data-type for an analytics field index.static AnalyticsDataType
AnalyticsDataType. STRING
Represents the "string" data-type for an analytics field index.Methods in com.couchbase.client.java.manager.analytics that return AnalyticsDataType Modifier and Type Method Description static AnalyticsDataType
AnalyticsDataType. valueOf(String value)
If there's no pre-defined constant for a data type, you can create your own using this method.Method parameters in com.couchbase.client.java.manager.analytics with type arguments of type AnalyticsDataType Modifier and Type Method Description void
AnalyticsIndexManager. createIndex(String indexName, String datasetName, Map<String,AnalyticsDataType> fields)
Creates a new analytics index if it does not exist.void
AnalyticsIndexManager. createIndex(String indexName, String datasetName, Map<String,AnalyticsDataType> fields, CreateIndexAnalyticsOptions options)
Creates a new analytics index if it does not exist with custom options.CompletableFuture<Void>
AsyncAnalyticsIndexManager. createIndex(String indexName, String datasetName, Map<String,AnalyticsDataType> fields)
Creates a new analytics index if it does not exist.CompletableFuture<Void>
AsyncAnalyticsIndexManager. createIndex(String indexName, String datasetName, Map<String,AnalyticsDataType> fields, CreateIndexAnalyticsOptions options)
Creates a new analytics index if it does not exist with custom options.Mono<Void>
ReactiveAnalyticsIndexManager. createIndex(String indexName, String datasetName, Map<String,AnalyticsDataType> fields)
Creates a new analytics index if it does not exist.Mono<Void>
ReactiveAnalyticsIndexManager. createIndex(String indexName, String datasetName, Map<String,AnalyticsDataType> fields, CreateIndexAnalyticsOptions options)
Creates a new analytics index if it does not exist with custom options.
-