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

com.azure.resourcemanager.sql.models.SampleName Maven / Gradle / Ivy

Go to download

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

The 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.sql.models;

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

/**
 * The name of the sample schema to apply when creating this database.
 */
public final class SampleName extends ExpandableStringEnum {
    /**
     * Static value AdventureWorksLT for SampleName.
     */
    public static final SampleName ADVENTURE_WORKS_LT = fromString("AdventureWorksLT");

    /**
     * Static value WideWorldImportersStd for SampleName.
     */
    public static final SampleName WIDE_WORLD_IMPORTERS_STD = fromString("WideWorldImportersStd");

    /**
     * Static value WideWorldImportersFull for SampleName.
     */
    public static final SampleName WIDE_WORLD_IMPORTERS_FULL = fromString("WideWorldImportersFull");

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy