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 AnalyticsDataTypeAnalyticsDataType. DOUBLERepresents the "double" data-type for an analytics field index.static AnalyticsDataTypeAnalyticsDataType. INT64Represents the "int64" data-type for an analytics field index.static AnalyticsDataTypeAnalyticsDataType. STRINGRepresents 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 AnalyticsDataTypeAnalyticsDataType. 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 voidAnalyticsIndexManager. createIndex(String indexName, String datasetName, Map<String,AnalyticsDataType> fields)Creates a new analytics index if it does not exist.voidAnalyticsIndexManager. 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.
-