Package com.azure.cosmos.models
Enum PartitionKind
- All Implemented Interfaces:
Serializable
,Comparable<PartitionKind>
,java.lang.constant.Constable
Specifies the partition scheme for a multiple-partitioned container in the Azure Cosmos DB database service.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe Partition of an item is calculated based on the hash value of the PartitionKey.The Partition of an item is calculated based on the hash value of multiple PartitionKeys.The Partition of an item is calculated based on a range. -
Method Summary
Modifier and TypeMethodDescriptiontoString()
static PartitionKind
Returns the enum constant of this type with the specified name.static PartitionKind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
HASH
The Partition of an item is calculated based on the hash value of the PartitionKey. -
RANGE
The Partition of an item is calculated based on a range. -
MULTI_HASH
The Partition of an item is calculated based on the hash value of multiple PartitionKeys.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
- Overrides:
toString
in classEnum<PartitionKind>
-