com.microsoft.azure.management.cosmosdb.PartitionKind Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-cosmosdb Show documentation
Show all versions of azure-mgmt-cosmosdb Show documentation
This package contains Microsoft Azure CosmosDB SDK. A new set of management libraries are now Generally Available. For documentation on how to use the new libraries, please see https://aka.ms/azsdk/java/mgmt
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.cosmosdb;
import java.util.Collection;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.microsoft.rest.ExpandableStringEnum;
/**
* Defines values for PartitionKind.
*/
public final class PartitionKind extends ExpandableStringEnum {
/** Static value Hash for PartitionKind. */
public static final PartitionKind HASH = fromString("Hash");
/** Static value Range for PartitionKind. */
public static final PartitionKind RANGE = fromString("Range");
/**
* Creates or finds a PartitionKind from its string representation.
* @param name a name to look for
* @return the corresponding PartitionKind
*/
@JsonCreator
public static PartitionKind fromString(String name) {
return fromString(name, PartitionKind.class);
}
/**
* @return known PartitionKind values
*/
public static Collection values() {
return values(PartitionKind.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy