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.
/** * 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.
/** * Defines values for SampleName. */
public final class SampleName extends ExpandableStringEnum<SampleName> {
Static value AdventureWorksLT for SampleName.
/** Static value AdventureWorksLT for SampleName. */
public static final SampleName ADVENTURE_WORKS_LT = fromString("AdventureWorksLT");
Creates or finds a SampleName from its string representation.
Params:
  • name – a name to look for
Returns:the corresponding SampleName
/** * 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); }
Returns:known SampleName values
/** * @return known SampleName values */
public static Collection<SampleName> values() { return values(SampleName.class); } }