com.microsoft.azure.documentdb.PartitionKind Maven / Gradle / Ivy
package com.microsoft.azure.documentdb;
/**
* Specifies the partition scheme for an multiple-partitioned collection in the Azure Cosmos DB database service.
*/
public enum PartitionKind {
/**
* The Partition of a document is calculated based on the hash value of the PartitionKey.
*/
Hash
}