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

com.azure.resourcemanager.datafactory.models.RunQueryOrder Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.datafactory.models;

import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;

/**
 * Sorting order of the parameter.
 */
public final class RunQueryOrder extends ExpandableStringEnum {
    /**
     * Static value ASC for RunQueryOrder.
     */
    public static final RunQueryOrder ASC = fromString("ASC");

    /**
     * Static value DESC for RunQueryOrder.
     */
    public static final RunQueryOrder DESC = fromString("DESC");

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy