All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.cosmos.CompositePathSortOrder Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.cosmos;

/**
 * Represents the sorting order for a path in a composite index, for a
 * collection in the Azure Cosmos DB database service.
 */
public enum CompositePathSortOrder {
    /**
     * ASCENDING sort order for composite paths.
     */
    ASCENDING {
        public String toString() {
            return "ascending";
        }
    },

    /**
     * DESCENDING sort order for composite paths.
     */
    DESCENDING {
        public String toString() {
            return "descending";
        }
    },
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy