Uses of Interface
com.couchbase.client.java.query.dsl.path.index.UsingPath
-
Packages that use 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 UsingPathIndex. dropIndex(String keyspace, String indexName)Drop a secondary index in the given keyspace.static UsingPathIndex. dropIndex(String namespace, String keyspace, String indexName)Drop a secondary index in the given namespace:keyspace.static UsingPathIndex. dropNamedPrimaryIndex(String keyspace, String customPrimaryName)Drop the primary index in the given keyspace that has a custom name.static UsingPathIndex. dropNamedPrimaryIndex(String namespace, String keyspace, String customPrimaryName)Drop the primary index of the given namespace:keyspace that has a custom name.static UsingPathIndex. dropPrimaryIndex(String keyspace)Drop the primary index in the given keyspace.static UsingPathIndex. 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 classDefaultUsingPathSeeUsingPath.Methods in com.couchbase.client.java.query.dsl.path.index that return UsingPath Modifier and Type Method Description UsingPathDefaultDropPath. drop(String keyspace, String indexName)UsingPathDefaultDropPath. drop(String namespace, String keyspace, String indexName)UsingPathDropPath. drop(String keyspace, String indexName)Drop one secondary indexes in the specified keyspace.UsingPathDropPath. drop(String namespace, String keyspace, String indexName)Drop one or more secondary indexes on the specified namespace:keyspace.UsingPathDefaultDropPath. dropPrimary(String keyspace)UsingPathDefaultDropPath. dropPrimary(String namespace, String keyspace)UsingPathDropPath. dropPrimary(String keyspace)Drop the primary index in the specified keyspace.UsingPathDropPath. dropPrimary(String namespace, String keyspace)Drop the primary index in the specified namespace:keyspace.UsingPathDefaultIndexNamesPath. indexes(String indexName, String... indexNames)UsingPathDefaultIndexNamesPath. indexes(List<String> indexNames)UsingPathIndexNamesPath. indexes(String indexName, String... indexNames)Specify the index or indexes in a pending state that needs building.UsingPathIndexNamesPath. indexes(List<String> indexNames)Specify the indexes in a pending state that needs building, as a non-empty list.UsingPathDefaultIndexNamesPath. primary()UsingPathIndexNamesPath. primary()Build the primary index (using a name ofIndex.PRIMARY_NAME, must be in a pending state).
-