com.microsoft.azure.management.sql.SampleName Maven / Gradle / Ivy
/**
* 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 SampleName.
*/
public final class SampleName extends ExpandableStringEnum {
/** Static value AdventureWorksLT for SampleName. */
public static final SampleName ADVENTURE_WORKS_LT = fromString("AdventureWorksLT");
/**
* Creates or finds a SampleName from its string representation.
* @param name a name to look for
* @return the corresponding SampleName
*/
@JsonCreator
public static SampleName fromString(String name) {
return fromString(name, SampleName.class);
}
/**
* @return known SampleName values
*/
public static Collection values() {
return values(SampleName.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy