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

com.microsoft.azure.management.sql.CatalogCollationType Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure Sql Management 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

There is a newer version: 1.41.4
Show newest version
/**
 * 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.sql;

import java.util.Collection;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.microsoft.rest.ExpandableStringEnum;

/**
 * Defines values for CatalogCollationType.
 */
public final class CatalogCollationType extends ExpandableStringEnum {
    /** Static value DATABASE_DEFAULT for CatalogCollationType. */
    public static final CatalogCollationType DATABASE_DEFAULT = fromString("DATABASE_DEFAULT");

    /** Static value SQL_Latin1_General_CP1_CI_AS for CatalogCollationType. */
    public static final CatalogCollationType SQL_LATIN1_GENERAL_CP1_CI_AS = fromString("SQL_Latin1_General_CP1_CI_AS");

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy