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

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

Go to download

This package contains Microsoft Azure CosmosDB SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt

There is a newer version: 2.46.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.cosmos.models;

import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;

/**
 * Sort order for composite paths.
 */
public final class CompositePathSortOrder extends ExpandableStringEnum {
    /**
     * Static value ascending for CompositePathSortOrder.
     */
    public static final CompositePathSortOrder ASCENDING = fromString("ascending");

    /**
     * Static value descending for CompositePathSortOrder.
     */
    public static final CompositePathSortOrder DESCENDING = fromString("descending");

    /**
     * Creates a new instance of CompositePathSortOrder value.
     * 
     * @deprecated Use the {@link #fromString(String)} factory method.
     */
    @Deprecated
    public CompositePathSortOrder() {
    }

    /**
     * Creates or finds a CompositePathSortOrder from its string representation.
     * 
     * @param name a name to look for.
     * @return the corresponding CompositePathSortOrder.
     */
    @JsonCreator
    public static CompositePathSortOrder fromString(String name) {
        return fromString(name, CompositePathSortOrder.class);
    }

    /**
     * Gets known CompositePathSortOrder values.
     * 
     * @return known CompositePathSortOrder values.
     */
    public static Collection values() {
        return values(CompositePathSortOrder.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy