Package | Description |
---|---|
com.couchbase.client.java.query | |
com.couchbase.client.java.query.dsl.path.index |
Modifier and Type | Method and 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.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultUsingPath
See
UsingPath . |
Modifier and Type | Method and Description |
---|---|
UsingPath |
DropPath.drop(String keyspace,
String indexName)
Drop one secondary indexes in the specified keyspace.
|
UsingPath |
DefaultDropPath.drop(String keyspace,
String indexName) |
UsingPath |
DropPath.drop(String namespace,
String keyspace,
String indexName)
Drop one or more secondary indexes on the specified namespace:keyspace.
|
UsingPath |
DefaultDropPath.drop(String namespace,
String keyspace,
String indexName) |
UsingPath |
DropPath.dropPrimary(String keyspace)
Drop the primary index in the specified keyspace.
|
UsingPath |
DefaultDropPath.dropPrimary(String keyspace) |
UsingPath |
DropPath.dropPrimary(String namespace,
String keyspace)
Drop the primary index in the specified namespace:keyspace.
|
UsingPath |
DefaultDropPath.dropPrimary(String namespace,
String keyspace) |
UsingPath |
IndexNamesPath.indexes(List<String> indexNames)
Specify the indexes in a pending state that needs building, as a non-empty list.
|
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 |
DefaultIndexNamesPath.indexes(String indexName,
String... indexNames) |
UsingPath |
IndexNamesPath.primary()
Build the primary index (using a name of
Index.PRIMARY_NAME , must be in a pending state). |
UsingPath |
DefaultIndexNamesPath.primary() |
Copyright © 2015 Couchbase, Inc.