Uses of Interface
com.couchbase.client.java.query.dsl.path.index.UsingPath
Package | Description |
---|---|
com.couchbase.client.java.query | |
com.couchbase.client.java.query.dsl.path.index |
-
Uses of UsingPath in com.couchbase.client.java.query
Methods in com.couchbase.client.java.query that return UsingPath Modifier and Type Method Description static UsingPath
Index. dropIndex(String keyspace, String indexName)
Drop a secondary index in the given keyspace.static UsingPath
Index. dropIndex(String namespace, String keyspace, String indexName)
Drop a secondary index in the given namespace:keyspace.static UsingPath
Index. dropNamedPrimaryIndex(String keyspace, String customPrimaryName)
Drop the primary index in the given keyspace that has a custom name.static UsingPath
Index. dropNamedPrimaryIndex(String namespace, String keyspace, String customPrimaryName)
Drop the primary index of the given namespace:keyspace that has a custom name.static UsingPath
Index. dropPrimaryIndex(String keyspace)
Drop the primary index in the given keyspace.static UsingPath
Index. dropPrimaryIndex(String namespace, String keyspace)
Drop the primary index of the given namespace:keyspace. -
Uses of UsingPath in com.couchbase.client.java.query.dsl.path.index
Classes in com.couchbase.client.java.query.dsl.path.index that implement UsingPath Modifier and Type Class Description class
DefaultUsingPath
SeeUsingPath
.Methods in com.couchbase.client.java.query.dsl.path.index that return UsingPath Modifier and Type Method Description UsingPath
DefaultDropPath. drop(String keyspace, String indexName)
UsingPath
DefaultDropPath. drop(String namespace, String keyspace, String indexName)
UsingPath
DropPath. drop(String keyspace, String indexName)
Drop one secondary indexes in the specified keyspace.UsingPath
DropPath. drop(String namespace, String keyspace, String indexName)
Drop one or more secondary indexes on the specified namespace:keyspace.UsingPath
DefaultDropPath. dropPrimary(String keyspace)
UsingPath
DefaultDropPath. dropPrimary(String namespace, String keyspace)
UsingPath
DropPath. dropPrimary(String keyspace)
Drop the primary index in the specified keyspace.UsingPath
DropPath. dropPrimary(String namespace, String keyspace)
Drop the primary index in the specified namespace:keyspace.UsingPath
DefaultIndexNamesPath. indexes(String indexName, String... indexNames)
UsingPath
DefaultIndexNamesPath. indexes(List<String> indexNames)
UsingPath
IndexNamesPath. indexes(String indexName, String... indexNames)
Specify the index or indexes in a pending state that needs building.UsingPath
IndexNamesPath. indexes(List<String> indexNames)
Specify the indexes in a pending state that needs building, as a non-empty list.UsingPath
DefaultIndexNamesPath. primary()
UsingPath
IndexNamesPath. primary()
Build the primary index (using a name ofIndex.PRIMARY_NAME
, must be in a pending state).